Category: JavaScript

  • Set the value of an input field using JavaScript

    This is one way of doing it:

    document.getElementById("mytext").value = "My value";
    

    use ‘setAttribute’ function:

    <input type="text" id="example"> // Setup text field 
    <script type="text/javascript"> 
      document.getElementById("example").setAttribute('value','My default value');
    </script>