<html>
<body>
<input type="search" id="mySearch" placeholder="Filter items">
<p>Click the button to change the placeholder text of the search field.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementById("mySearch").placeholder = "Search files";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_search_placeholder by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 14:47:20 GMT -->
</html>