HTML | DOM S Object
The S Object in HTML DOM is used to represent the HTML <s> element. This tag is used to specify that the text content is no longer correct or accurate. The <s> element can be accessed by using getElementById() method.
Syntax:
document.getElementById("id");
Where id is assigned to the <s> tag.
Example 1:
<!DOCTYPE html> < html > < head > < title > HTML DOM S Object </ title > </ head > < body style = "text-align:center;" > < h1 style = "color:green;" > GeeksForGeeks </ h1 > < h2 >DOM s Object</ h2 > < p > A < s id = "s" >computer science</ s > portal for geeks. </ p > < button onclick = "Geeks()" > Click Here </ button > < script > function Geeks() { var txt = document.getElementById("s"); txt.style.color = "green"; } </ script > </ body > </ html > |
Output:
Before click on the button:
After click on the button:
Example 2: S Object can be created by using the document.createElement method.
<!DOCTYPE html> < html > < head > < title > HTML DOM S Object </ title > </ head > < body style = "text-align:center;" > < h1 style = "color:green;" > GeeksForGeeks </ h1 > < h2 >DOM S 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("S"); 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:
Recommended Posts:
- HTML | DOM Object Object
- HTML | DOM Bdo Object
- HTML | DOM Pre Object
- HTML DOM Aside Object
- HTML | DOM Ol Object
- HTML | DOM li Object
- HTML | DOM DT Object
- HTML | DOM dl Object
- HTML| DOM HR Object
- HTML | DOM DD Object
- HTML | DOM DFN Object
- HTML| DOM Ins Object
- HTML | DOM Ul Object
- HTML | Object tag
- HTML | DOM Del Object
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.