value from getelementbyid
document.getElementById('numbers').value
value from getelementbyid
document.getElementById('numbers').value
javascript get input value by id
<!--
This is example is with a number...
But you can do it with whatever input type you want
-->
<input type="number" name="numberInput" id="numberInput" max="20" min="1" step="1">
<button type="button" onclick="myFunction()">sumbit</button>
<script>
function myFunction() {
let tokenAmount = document.getElementById("numberInput").value;
return // whatever you want to do with it
}
</script>
Javascript get text input value
var inputValue = document.getElementById("myTextInputID").value;
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>
get value from textbox in vanilla javascript
document.getElementById("myText").value = "Johnny Bravo";
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us