Answers for "value of input field"

56

Javascript get text input value

var inputValue = document.getElementById("myTextInputID").value;
Posted by: Guest on July-26-2019
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

Code answers related to "value of input field"

Code answers related to "Javascript"

Browse Popular Code Answers by Language