Responding To A Click

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Responding To A Click:

respondingtoaclick.html
!
!

<!doctype html>
<html>
<head>
<title>Learning Javascript</title>

<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />



</head>

<body>

<button id="myButton">You know you want to click me...</button>

<script type="text/javascript">

document.getElementById("myButton").onclick=function() {

alert("Hi!");


}

</script>

</body>
</html>

You might also like