Files
JavaScript-from-Beginner-to…/Chapter 10/ch10-eventtarget.html
T
2021-11-24 19:50:37 +01:00

11 lines
210 B
HTML
Executable File

<html>
<body>
<button type="button" onclick="triggerSomething()">Click</button>
<script>
function triggerSomething() {
console.dir(event.target);
}
</script>
</body>
</html>