DEV Community

Discussion on: A Beginners Guide To DOM Manipulation

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt • Edited
document.body.append(element)
//this method gets the element to appear on the page.

This one is quite special method, and is harder explain than

document.querySelector('body').append(element)

Well, document.body is a special DOM object traversal.