0
I am having problem in using getelementbyid
Please help meand share a code so I can solve my problem
5 odpowiedzi
+ 3
document.getElementById("IdOfElement"). innerHTML = "I love JavaScript";
This will help you
+ 2
Get the element with the specified ID:
document.getElementById("demo");
Definition and Usage
The getElementById() method returns the element that has the ID attribute with the specified value.
This method is one of the most common methods in the HTML DOM, and is used almost every time you want to manipulate, or get info from, an element on your document.
Returns null if no elements with the specified ID exists.
An ID should be unique within a page. However, if more than one element with the specified ID exists, the getElementById() method returns the first element in the source code.
+ 1
the element with id="demo" and change its color:
var x = document.getElementById("demo"); // Get the element with id="demo"
x.style.color = "red"; // Change the color of the element
0
Thanks for your answer
0
can you send a code bit