blob: 54bb8a257bcb274ecb6613acd739278aeb9f7c75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<body>
<br />
<input type=button id=button1 name=hp value="Option 1">
<label for=button1>Press Me!</label>
<br />
<input type=button id=button2 name=hp value="Option 2">
<label for=button2>No, Press Me!</label>
<br />
<div style="display: inline-block;">
<pre>Last pressed: <span id=last></span></pre>
</div>
<script>
document.getElementById('button1').addEventListener('click', function() {
document.getElementById('last').innerHTML = this.value;
});
document.getElementById('button2').addEventListener('click', function() {
document.getElementById('last').innerHTML = this.value;
});
</script>
</body>
|