click.html 431 Bytes
Newer Older
Caleb C. Sander's avatar
Caleb C. Sander committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
  <body>
    <button id='alert-button'>Click me!</button>
    <script>
      // We use the `id` property of the button to access it from JS
      const button = document.getElementById('alert-button')
      button.onclick = () => {
        // You could put any other code you wanted here
        // and it would run each time the button is clicked
        alert('Button was clicked')
      }
    </script>
  </body>
</html>