2021-12-02 21:21:10 +01: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>