Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have something like this:

<div class="content">
    <a href="#">A</a>
</div>
<div class="content">
    <a href="#">B</a>
</div>
<div class="content">
    <a href="#">C</a>
</div>

When one of these links is clicked, I want to perform the .hide() function on the links that are not clicked. I understand jQuery has the :not selector, but I can't figure out how to use it in this case because it is necessary that I select the links using $(".content a")

I want to do something like

$(".content a").click(function()
{
    $(".content a:not(this)").hide("slow");
});

but I can't figure out how to use the :not selector properly in this case.

share|improve this question

2 Answers

up vote 148 down vote accepted

Try using the not() method instead of the :not() selector.

$(".content a").click(function() {
    $(".content a").not(this).hide("slow");
});
share|improve this answer
Why can I not get this to work... $("#menu-holder #first_level li").not(this).addClass("returnToParent"); – marck Sep 8 '12 at 3:46
@marck Without context, I don't know. Create a new question and I may be able to help. – Dan Herbert Sep 8 '12 at 15:49

You can use the not function rather than the :not selector:

$(".content a").not(this).hide("slow")
share|improve this answer

protected by Community Feb 4 '12 at 15:07

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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