| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <button id="button">Button</button> | |
| <p><a id="link" href="links.html">Link</a></p> | |
| <script> | |
| const button = document.getElementById('button'); | |
| button.addEventListener('click', function(event) { | |
| button.lastClickEvent = event; | |
| }); | |
| </script> | |
| </body> | |
| </html> |