<script>
// is there a way to put an onclick event in css
function myFunction(event) {
alert("node = " + event.target.nodeName);
alert("id = " + event.target.idName);
alert("class = " + event.target.className);
}
</script>
Except for ’ event.target.idName ’ which I can’t get working either . (Pls, help also) .
But I don’t know how to get the actual Node element .
Pls help .
Thanks
What exactly are you trying to do? Walking through all the elements in a tree is often not needed, so I wonder if there is an easier way to accomplish your goal.
This code will print out all the DOM elements that are children of the node you pass in. To see the code at work, make sure you have the DOM walker function defined with the commented out line uncommented:
function theDOMElementWalker(node) {
if (node.ELEMENT_NODE === 1) {
console.log(node.tagName);
node = node.firstChild;
while (node) {
theDOMElementWalker(node);
node = node.nextSibling;
}
}
}
From there, pass it any DOM element that has children. An easy one is document.body, so you can do this: