HTML DOM Article Object

Article object

The Article object represents the HTML <article> element.

Note:Internet Explorer 8 and earlier versions do not support the <article> element.

Access Article object

You can use getElementById() to access the <article> element:

var x = document.getElementById("myArticle");

Try It Yourself

Create Article object

You can use the document.createElement() method to create the <article> element:

var x = document.createElement("ARTICLE");

Try It Yourself

Standard Properties and Events

Article Object Supports StandardsPropertiesAndEvents.

Related Pages

HTML Reference Manual:HTML <article> Tag