I get troubles with theEventListeners if I use innerHTML+= to append a new input field, since there is a caching problem I guess.
<div id="frame">
<input type="button" id="btn"/>
</div>
JS
document.getElementById("btn").addEventListener("click",function(){
divframe.innerHTML+=" <input ... />..."
});
I simply want if the user presses the button over and over again, there will be a new input and buttons.( with their own EventListeners <- unnecessary right now.)