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