mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-17 16:42:54 +00:00
21 lines
713 B
HTML
21 lines
713 B
HTML
<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>
|