Oggetto Article DOM HTML
Oggetto Article
L'oggetto Article rappresenta l'elemento HTML <article>.
Nota:Internet Explorer 8 e le versioni precedenti non supportano l'elemento <article>.
Accedi all'oggetto Article
Puoi utilizzare getElementById() per accedere all'elemento <article>:
var x = document.getElementById("myArticle");
Creare l'oggetto Article
Puoi utilizzare il metodo document.createElement() per creare l'elemento <article>:
var x = document.createElement("ARTICLE");
Pagine correlate
Manuale di riferimento HTML:Etichetta <article> HTML