Answers for "input content"

19

javascript set input field value

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

html putting content in input

<body>
  <input type='text' value='Your wanted value/text here'></input>
</body>
Posted by: Guest on November-29-2020
2

html value attribute

<!-- The value attribute is used to for example fill data to an input -->

<input type="text" value="I was already filled" id="textInput">

<!-- The value can be set or copied using JavaScrpit -->
<script>
	// Get your element
	var input = document.getElementById('textInput');
	
	// get the value
	var value = input.value;
	
	// set the value
	input.value = "i was changed";
</script>
Posted by: Guest on November-17-2020

Browse Popular Code Answers by Language