balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

js-button.js (261B)


      1 /* jshint unused:false */
      2 
      3 function redux_add_date() {
      4 	(function( $ ) {
      5 
      6 		var date = new Date();
      7 		var text = $( '#opt-blank-text' );
      8 
      9 		text.val( date.toString() );
     10 	})( jQuery );
     11 }
     12 
     13 function redux_show_alert() {
     14 	alert( 'You clicked the Alert button!' );
     15 }