value
PropertyYou can simply use the value
property of the DOM input element to get the value of text input field.
The following example will display the entered text in the input field on button click using 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>
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
Laravel 5.5 - Delete Confirm Bootstrap jQuery Model
Hello, everyone in this article we are s...How to Merge two Collections in Laravel
Laravel collection class Illuminate\Supp...Node.js MySQL Create Database Connection
MySQL is widely used database management...Run Two Skype Account in Ubuntu System
In this article, i will share with you h...How to Build Multi Language App in Vue.js
This is a step by step Vue i18n tutorial...