HTML | DOM Small Object
The Small Object in HTML DOM is used to represent the HTML <small> element. The small element can be accessed by using getElementById() method.
Syntax:
document.getElementById("id");
Where id is assigned to the <small> tag.
Example 1:
html
<!DOCTYPE html> < html > < head > < title > HTML DOM Small Object </ title > </ head > < body style = "text-align:center;" > < h1 style = "color:green;" > GeeksForGeeks </ h1 > < h2 >DOM small Object</ h2 > < p >A < small id = "small_obj" >computer science</ small > portal for geeks.</ p > < button onclick = "Geeks()" > Click Here </ button > < script > function Geeks() { var txt = document.getElementById("small_obj"); txt.style.color = "green"; } </ script > </ body > </ html > |
Output:
Before click on the button:
After click on the button:
Example 2: Small Object can be created by using the document.createElement method.
html
<!DOCTYPE html> < html > < head > < title > HTML DOM Small Object </ title > </ head > < body style = "text-align:center" > < h1 style = "color:green;" > GeeksForGeeks </ h1 > < h2 >DOM small Object</ h2 > < button onclick = "Geeks()" > Click Here! </ button > < br >< br > < div > A < span id = "p" ></ span > portal for geeks. </ div > < script > function Geeks() { var txt = document.createElement("SMALL"); var t = document.createTextNode("computer science"); txt.appendChild(t); document.getElementById("p").appendChild(txt); } </ script > </ body > </ html > |
Output:
Before click on the button:
After click on the button:
Supported Browsers:
- Google Chrome
- Mozilla Firefox
- Edge
- Safari
- Opera
Please Login to comment...