Rachel
0
Q:

getelementbyid javascript

document.getElementById("YourElementId");
8
document.getElementById("some_id");
12
document.getElementById("someid");
19
var myElement=document.getElementById("someElementID");
13
<!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>
14
const element = document.getElementById('id');
0

 document.getElementById("demo");

 
0

New to Communities?

Join the community