Difference between revisions of "Template:Toronto/js/test-script"

 
Line 1: Line 1:
$( document ).ready(function() {
+
'use strict'
   console.log( "hi" );
+
 
alert("hi");
+
document.getElementById('testbutton').addEventListener('click', clickHandler)
});
+
 
 +
function clickHandler() {
 +
   alert('You clicked the button! Now go do something with your life.')
 +
}

Latest revision as of 23:03, 30 October 2017

'use strict'

document.getElementById('testbutton').addEventListener('click', clickHandler)

function clickHandler() {

 alert('You clicked the button! Now go do something with your life.')

}