If I manually write those following lines in an HTML file:
<div>
<input type="button" value="Button 1">
<input type="button" value="Button 2">
</div>
A text node will be created for each new line.
I wanted to understand the useCapture argument of addEventListener method. I choosed to access DOM elements using childNodes property of my div element but I will have to ignore textNodes between elements. This isn't really practical:
document.getElementsByTagName("div")[0].addEventListener("click", function(){alert(1);}, true);
document.getElementsByTagName("div")[0].childNodes[1].addEventListener("click", function(){alert(2);}, false);
document.getElementsByTagName("div")[0].childNodes[3].addEventListener("click", function(){alert(3);}, false);
Here you see that I have to ignore childNodes[0]
and childNodes[2]
in order to select my 2 input tags.
Is there a way to bypass textNodes creation without writing all HTML code just on one line and without using Javascript createElement
?
Is it possible to write HTML code without creating textNodes when going to new line?