Answers for "input value html"

19

javascript set input field value

document.getElementById("myInputID").value = "My Value"; //set value on myInputID
Posted by: Guest on August-05-2019
6

html input text

<label for="name">Name (4 to 8 characters):</label>

<input type="text" id="name" name="name" required
       minlength="4" maxlength="8" size="10">
Posted by: Guest on September-09-2020
18

get value javascript

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Get Text Input Field Value in JavaScript</title>
</head>
<body>
    <input type="text" placeholder="Type something..." id="myInput">
    <button type="button" onclick="getInputValue();">Get Value</button>
    
    <script>
        function getInputValue(){
            // Selecting the input element and get its value 
            var inputVal = document.getElementById("myInput").value;
            
            // Displaying the value
            alert(inputVal);
        }
    </script>
</body>
</html>
Posted by: Guest on April-16-2020
1

how to get the input of a textbox in html

//HTML Textbox w/Getting Javascript Input:
<script>
  function getTextBox(){
    var k = document.getElemntById('myTextBox').value
    alert(k)
  }
</script>
<input type="text" id="myTextBox">
<button onclick="getTextBox()">Get Text Input</button>
Posted by: Guest on September-14-2020
4

default value input

<input type="text" id="fname" name="fname" value="John">
Posted by: Guest on October-15-2020
0

js html tag valu

var value = document.getElementById("theInput").innerHTML;
Posted by: Guest on September-23-2020

Browse Popular Code Answers by Language