Javascript get text input value
var inputValue = document.getElementById("myTextInputID").value;
Javascript get text input value
var inputValue = document.getElementById("myTextInputID").value;
how to get value of textbox in javascript from html
<!--
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>
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