vote up 1 vote down star

I have some HTML code that contains nested <ul> elements and I need to add a class 'parent' to each <li> element that contains a child <ul>. There could be more than one element contained directly withing a single <li> (e.g <li><a>...</a><span>...</span><ul>...</ul></li>).

All I need is to determine if a particular <li> contains a <ul> as a child element.

How would I go about this?

flag

3 Answers

vote up 12 vote down check

This will accomplish what you need:

$('li:has(> ul)').addClass('parent');
link|flag
Wow, Thanks! Works perfect! – deverop Sep 23 at 13:54
vote up 3 vote down

Changed the answer after re-reading the question:

$("li:has(ul)").addClass("parent");
link|flag
vote up 3 vote down

Use the has selector.

$("li:has(ul)").addClass("parent")
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.