servo/tests/ref/submit_focus_a.html
2015-09-27 19:23:20 -04:00

10 lines
160 B
HTML

<style>
button {
display: inline-block;
}
</style>
<button id="1">Submit</button>
<script>
var elem = document.getElementById('1');
elem.focus();
</script>