Reputation: 7969
I was reading about textNodes
and childnodes
on the internet. I read much about the nodes but i did get it understand. What are textnodes
exactly?
I have a sample HTML and i want to know what are the textNode
s of my divs and how to pick childnodes
and textnodes
.
<head>
<script type="text/javascript">
alert(document.childNodes[1].childNodes[0])
</script>
</head>
<body>
<div id="myDiv">
<div>abc</div>
</div>
</body>
Upvotes: 0
Views: 177
Reputation: 9691
Upvotes: 3