This lesson goes over how to create an HTML element and add it to our document. We do this by creating an element with document.createElement
. Once we have the element created, we can use document.appendChild
to add our element to our HTML.
We then go over how to connect our JavaScript to a button's onclick
event.
innerText is causing a page re- layout. textContent not.
In general , well done. I like it.