Line 1: | Line 1: | ||
− | + | 'use strict' | |
− | + | ||
− | + | 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.')
}