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