HTML | DOM Footer Object
The DOM footer object is used to represent the HTML <footer> element. The footer element can be accessed using the getElementById() method.
Syntax:
document.getElementById("id");
Where ‘id’ is the ID assigned to the footer tag.
Example-1: In the below program the footer element is accessed and the color of the text inside the footer element is changed.
html
<!DOCTYPE html> < html > < body > < h1 style = "color:green;" > GeeksForGeeks </ h1 > < h2 >DOM footer Object</ h2 > < button onclick = "Geeks()" >Click Here</ button > < br >< br > < footer id = "s" >This is a Footer content</ footer > < script > function Geeks() { var txt = document.getElementById("s"); txt.style.color = "green"; } </ script > </ body > </ html > |
Output:
Before clicking on button:
After clicking on button:
Example-2: Footer Object can be created by using the document.createElement method.
html
<!DOCTYPE html> < html > < body > < h1 style = "color:green;" > GeeksForGeeks </ h1 > < h2 >DOM footer Object</ h2 > < button onclick = "Geeks()" >Click Here!</ button >< br >< br > < p id = "foot" ></ p > < script > function Geeks() { var x = document.createElement("FOOTER"); document.body.appendChild(x); var y = document.createElement("P"); var t = document.createTextNode("This is a p element in a footer element."); y.appendChild(t); document.getElementById("foot").appendChild(y); } </ script > </ body > </ html > |
Output:
Before clicking on button:
After clicking on button:
Supported Browsers:
- Google Chrome
- Mozilla Firefox
- Internet Explorer (after IE 8.0)
- Safari
- Opera
Please Login to comment...