Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

EXTENSION TO MY PREVIOUS Q How to select a span with multiple classes and placed inside an anchor?

** Adding an extension to this, I would like to add a class that needs to be ignored from the click event. hence I used below code which doesnt work. Any help will be appreciated!

$('span.c3, span.c4:not(.c5)').parents('a').click(function (e) {
            alert("clicked!");
   });

I've also tried using span.c5 in the not selector but that doesnt work either :(

Please find the html change below:

<div class="c0 c">
        <a class="c1 c2">
        <span class="c3 c4 c5"></span>Anchor_Text
        </a>
    </div>
share|improve this question

2 Answers

up vote 2 down vote accepted

You can use .not, which will filter all the elements you selected:

$('span.c3, span.c4').not('.c5').parents('a').click(function (e) {
    alert("clicked!");
});

BTW, are you sure what you want is parents? I think what you really want is closest.


Here's the fiddle: http://jsfiddle.net/GCNKg/


Update: Since you mentioned in the comments that you have to use the :not selector because you're using event delegation, you'll have to either add :not to every selector, or just add the following filter to your script:

$.expr[':'].any = $.expr.createPseudo(function( selector ) {
    return function (el) {
        return $.find.matches(selector, [el]).length > 0;
    }
});

This adds the :any selector to jQuery/Sizzle (I based it off of this jQuery feature request, but updated it so that it works with the new Sizzle selector engine used by jQuery since version 1.8).

Once you have that filter included, you can use :any in your selectors, which'll work nicely with :not:

$(document.body).on('click', 'span:any(.c3, .c4):not(.c5)', function (e) {
    alert("clicked!");
});

Here's the fiddle: http://jsfiddle.net/GCNKg/1/

share|improve this answer
1  
Thanks Joseph. using .not() worked! I'll try evaluating both the properties and test it out in different scenario's to see which one suits best. appreciate your response! – Evolving Techie Jan 25 at 16:20
@BenM - Because I put much more work into mine. Anyhow, I only posted a closest fiddle. I'll leave the parents fiddle sample for you. I +1'ed you for that. Have a great day! – Joseph Silber Jan 25 at 16:22
but how to use .not() with $('body').on("click", ".c1, .c2", function () { alert("clicked!"); } }) – Evolving Techie Jan 25 at 16:23
1  
@EvolvingTechie - You can't. In that case, you'll have to explicitly une the :not selector on each one of your selectors ".c1:not(.c5), .c2:not(.c5)". Or, just check for hasClass('c5') in your callback, and return early. – Joseph Silber Jan 25 at 16:25
1  
Beautiful, that works like a charm.. thanks again!!! – Evolving Techie Jan 25 at 17:00
show 2 more comments

Use the .not() function, rather than the selector. For example:

$('span.c3, span.c4').not('.c5').parents('a').click(function (e) {
    alert("clicked!");
});

Here's a jsFiddle demo.

share|improve this answer
Thanks Ben, .net() worked perfect in my case! – Evolving Techie Jan 25 at 16:21
+1 Using :any would have been so much easier. I wish jQuery supported this. Check out the update to my answer. Do you think we could somehow get this into the Sizzle core. Nobody on this thread seems to realize how useful this is for event delegation. – Joseph Silber Jan 25 at 16:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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