summaryrefslogtreecommitdiff
path: root/Base/res/html/misc/button.html
blob: f48af972da0a515e1cb08ea9cb6ba2260702d374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<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 />
    <input type=button id=button3 name=hp value="Option 3" disabled>
    <label for=button3>You'll never get this!</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>