get input of a input tag in js code example
Example 1: 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(){
var inputVal = document.getElementById("myInput").value;
alert(inputVal);
}
</script>
</body>
</html>
Example 2: javascript get value of input on button click
<form action="/">
<label for="">Whatever you want</label>
<input type="text" id='form'>
<input type="submit" id="submit">
</form>
<script>
const btn = document.getElementById('form');
btn.addEventListener('click', (e) => {
e.preventDefault();
const value = document.getElementById('submit').value;
console.log(value);
});
</script>