Objeto Section do HTML DOM
Objeto Section
O objeto Section representa o elemento HTML <section>.
Notas:O Internet Explorer 8 e versões anteriores não suportam o elemento <section>.
Acessar objeto Section
Você pode usar getElementById() para acessar o elemento <section>:
var x = document.getElementById("mySection");
Criar objeto Section
Você pode usar o método document.createElement() para criar o elemento <section>:
var x = document.createElement("SECTION");
Páginas relacionadas
Manual de referência do HTML:Tag <section> do HTML