<html>
<body>
Search: <input type="search" id="mySearch" value="Food">
<p>Click the button to change the default value of the search field.</p>
<button type="button" onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementById("mySearch").defaultValue = "Drinks";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_search_defaultvalue by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:17:19 GMT -->
</html>