<html>
<body>
<h2>Use select() to select the content of a Search Field</h2>
Search: <input type="search" id="mySearch">
<p>Write something in the search field above, then click the button to select the content of the search field.</p>
<button type="button" onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementById("mySearch").select();
}
</script>
</body>
</html>