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