16 lines
261 B
JavaScript
Raw Normal View History

2024-04-10 17:46:06 +05:45
/* jshint unused:false */
function redux_add_date() {
(function( $ ) {
var date = new Date();
var text = $( '#opt-blank-text' );
text.val( date.toString() );
})( jQuery );
}
function redux_show_alert() {
alert( 'You clicked the Alert button!' );
}