I am having problem in using getelementbyid | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I am having problem in using getelementbyid

Please help meand share a code so I can solve my problem

23rd Jul 2020, 5:58 AM
Aryan
5 Answers
+ 3
document.getElementById("IdOfElement"). innerHTML = "I love JavaScript"; This will help you
23rd Jul 2020, 6:01 AM
ツSampriya😘ツ
ツSampriya😘ツ - avatar
+ 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.
23rd Jul 2020, 6:13 AM
Raghu Rao
Raghu Rao - avatar
+ 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
23rd Jul 2020, 6:18 AM
Raghu Rao
Raghu Rao - avatar
0
Thanks for your answer
23rd Jul 2020, 6:02 AM
Aryan
0
can you send a code bit
23rd Jul 2020, 6:15 AM
Aryan