GDES-315 Exercise_15.3
Pop up alert on click of a button
by emilytrabert
HTML
<body>
<button>
Awesome generic button
</button>
</body>
JavaScript
/* Write code that executes the following:
When a button is clicked, a pop-up alerts the user:
"I can make magic happen on a click of a button!"
*/
// click the demo box
$("button").click(function(){
alert("I can make magic happen on a click of a button!");
});