HTML DOM Footer Object
Footer object
The Footer object represents the HTML <footer> element.
Note:Internet Explorer 8 and earlier versions do not support the <footer> element.
Access Footer object
You can use getElementById() to access the <footer> element:
var x = document.getElementById("myFooter");
Create Footer object
You can use the document.createElement() method to create a <footer> element:
var x = document.createElement("FOOTER");
Standard Properties and Events
Footer Object Supports StandardsPropertiesandEvents.
Related Pages
HTML Tutorial:HTML5 Semantic Elements
HTML Reference Manual:HTML <footer> Tag
JavaScript Reference Manual:HTML DOM Header Object