I have the following HTML :

<li>
<a class="meuble-tab" href="#">Meuble</a>
</li>

i need to achieve the following:

<li class="active">
<a class="meuble-tab" href="#">Meuble</a>
</li>

Using Jquery I am at the point where i can get to the

$(".meuble-tab")

How do I get to its parent "li" to do the addClass("active")?

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

Try this:

$(".meuble-tab").parent("li").addClass("active");

For reference, please see parent( [expr] ):

Get the direct parent of an element. If called on a set of elements, parent returns a set of their unique direct parent elements.

You may use an optional expression to filter the element(s). If there is no parent, returns a jQuery object with a length of 0.

link|improve this answer
Nope that does not work, the li still has no class assigned – Murtaza Mandvi Jul 31 '09 at 20:22
Sorry , it did work, I had a syntax error in my code ! Thanks that was easy - foolish to post a question :) – Murtaza Mandvi Jul 31 '09 at 20:23
I just tried this. It does work. Are you running that code bit in $(document).ready()? – Stefan Kendall Jul 31 '09 at 20:26
why the li filter? – redsquare Jul 31 '09 at 20:32
@redsquare - Otherwise I would need to do this: $(".meuble-tab").parent(),get(0).addClass("active"); - I figured my approach was more concise, – Andrew Hare Aug 1 '09 at 0:20
feedback

Your Answer

 
or
required, but never shown

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