When I click on the link it's working perfectly but only ONCE.
I want to be able to be able to keep the addEventListener
even after it's been executed.
<div id=myBox>
<a href="#" id="append">append</a>
</div>
document.getElementById("append").addEventListener("click", appendMore);
function appendMore() {
myBox.innerHTML += '1';
}