vote up 0 vote down star

I have a nested menu like this:

<ul id="menu">
    <li>Home
        <ul>
            <li>New</li>
            <li class="selected">Open</li>
            <li>Folder</li>
        </ul>
    </li>
    <li>Another menu
        <ul>
            <li>submenu item 1</li>
            <li>submenu item 2</li>
            <li>submenu item 3</li>
        </ul>
    </li>
</ul>

Now I'm trying to change the class of the first LI element (the one that contains Home), because it has a child element with a "selected" class. Is this possible using jQuery?

flag

3 Answers

vote up 3 vote down check

A faster and more precise method in catching targets.

$("li.selected").parents("#menu").addClass('foo');

Updated to add some class to first li child.

$("li.selected").parents("#menu").addClass('foo').find('li:first').addClass('bar');

I also reccomend reading the jQuery Traversing documentation.

link|flag
I'd like to add a CSS class to <li>Home. How should I do that? – jao Nov 7 at 13:06
This won't work if you have any <li>'s selected inside "Another menu" – fudgey Nov 7 at 16:27
the response is based on given HTML code. – Elzo Valugi Nov 7 at 18:01
vote up 1 vote down

You can do that with this syntax.

$('.selected').parent().parent().addClass('foo').removeClass('bar');
link|flag
Better to use .parents() selector – Nimbuz Nov 7 at 12:51
I don't see how it would be better exactly, could you give an example? – Niels Bom Nov 18 at 18:46
vote up 0 vote down

Try

$('li.selected').parent().closest('li').addClass('foo');

Edit: Sorry, only using closest will make it target itself.

or you can use:

$('li.selected').closest('li:not(".selected")').addClass('foo');
link|flag

Your Answer

Get an OpenID
or

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