18 lines
336 B
HTML
18 lines
336 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>JS Tester</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<button onclick="message(this)">Button 1</button>
|
|
<button onclick="message(this)">Button 2</button>
|
|
</div>
|
|
<script>
|
|
function message(el) {
|
|
console.dir(el.textContent);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|