JavaScript Get Element By Id Value Example

Jun 11, 2021 . Admin

Hello Friends,

Now let's see example of how to get element by id value example. We will use how to get element by id value in javascript. Here you will learn how to use javascript get element by id value. This is a short guide on get element by id value. Let's get started with how to get element by id value in javascript.

Here i will give you many example how you can get element by id value javascript.

Example : 1
<!DOCTYPE html>
<html>
	<head>
		  <meta charset="utf-8">
		  <title>JavaScript Get Element by Id Value</title>
	</head>
	<body>
		<p id="test">Click the button to change the color.</p>

		<button onclick="stud()">Check it</button>

		<script>
			function stud() {
			  	var x = document.getElementById("test");
			  	x.style.color = "green";
			}
		</script>
	</body>
</html>
Output :
Click the button to change the color. (Green color after click the button)
Example : 2
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>JavaScript Get Element by Id Value</title>
    </head>
    <body>
        Name: <input type="text" id="dummyText" value="Laravel">

        <p>Click the button to change the value of the text field.</p>
        <button onclick="test()">Check It</button>

        <script>
            function test() {
                document.getElementById("dummyText").value = "Javascript";
            }
        </script>
    </body>
</html>
Output :

Name: Javascript

After Click the button to change the value of the text field.

It will help you...

#Javascript