blob: 21501e4c5f35f1a6f01b9546c026de8cd287db2b (
plain)
1
2
3
4
5
6
7
8
9
|
<p>
Only the second search field should have a cancel button (×).
</p>
<input type="search">
<input type="search" value="this one">
<script>
document.querySelectorAll('input')[1].focus();
</script>
|