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() {
let txt = document.getElementById("s");
txt.style.color = "green";
}
</ script >
</ body >
</ html >
|
Output:
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() {
let x = document.createElement("FOOTER");
document.body.appendChild(x);
let y = document.createElement("P");
let t = document.createTextNode(
"This is a p element in a footer element.");
y.appendChild(t);
document.getElementById("foot").appendChild(y);
}
</ script >
</ body >
</ html >
|
Output:
Supported Browsers:
- Google Chrome
- Mozilla Firefox
- Internet Explorer (after IE 8.0)
- 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!