Reputation: 55729
In HTML5 what nodes are created in the DOM tree by the following HTML?
<div>foo</div>
Something like the following?
div node
|
|___text-node
Upvotes: 0
Views: 38
Reputation: 2133
It is going to be a div element
and a textNode
inside (containing foo). Example: http://jsfiddle.net/2ygLz44p/1/
Upvotes: 2