Files
JavaScript-from-Beginner-to…/chapter9/ch9-this.html
T
2021-09-04 21:22:51 +02:00

10 lines
190 B
HTML
Executable File

<html>
<body>
<script>
function reveal(el){
console.log(el.parentElement);
}
</script>
<button onclick="reveal(this)">Click here!</button>
</body>
</html>