Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

check if element has specific child javascript

var hasChild = parentDiv.querySelector("#child2") != null;
//The querySelector() method lets you search the subtree beneath the 
//starting element using the given CSS selector string. If the element is found,
// its DOM node is returned.
 
PREVIOUS NEXT
Tagged: #check #element #specific #child #javascript
ADD COMMENT
Topic
Name
4+5 =