The Small Object in HTML DOM is used to represent the HTML <small> element. The small element can be accessed by using the getElementById() method.
Syntax:
document.getElementById("id");
Where id is assigned to the <small> tag.
Example 1: In this example, we will see the use of Small Object
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() {
let txt = document.getElementById("small_obj");
txt.style.color = "green";
}
</ script >
</ body >
</ html >
|
Output:
Example 2: Small Objects 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() {
let txt = document.createElement("SMALL");
let t = document.createTextNode("computer science");
txt.appendChild(t);
document.getElementById("p").appendChild(txt);
}
</ script >
</ body >
</ html >
|
Output:
Supported Browsers:
- Google Chrome
- Mozilla Firefox
- Edge
- Safari
- Opera
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
14 Jun, 2023
Like Article
Save Article