HTML DOM Aside Object
Aside object
The Aside object represents the HTML <aside> element.
Note:Internet Explorer 8 and earlier versions do not support the <aside> element.
Access the Aside object
You can use getElementById() to access the <aside> element:
var x = document.getElementById("myAside");
Create Aside Object
You can use the document.createElement() method to create the <aside> element:
var x = document.createElement("ASIDE");
Standard Properties and Events
The Aside Object Supports StandardsPropertiesandEvents.
Related Pages
HTML Reference Manual:HTML <aside> Tag