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

I want to setup a click event trigger in jQuery for certain anchor tags.

I want to open certain links in a new tab while ignoring ones with a certain class (before you ask I cannot put classes on the links I am trying to catch as they come from a CMS).

I want to exclude links with class "button" OR "generic_link"

I have tried

$(".content_box a[class!=button]").click(function (e) 
{
    e.preventDefault();     
    window.open($(this).attr('href'));
});

But that doesn't seem to work, also how do I do an OR statement to include "generic_link" in the exclusion?

Many thanks

share|improve this question

2 Answers

up vote 43 down vote accepted

Try not functon

$(".content_box a").not(".button")

more about this : http://api.jquery.com/not/

share|improve this answer
So I could do: $(".content_box a").not(".button").not(".generic_link").click(function (e)...? – GreenGiant Jun 10 '10 at 14:18
This is working thank you very much everyone – GreenGiant Jun 10 '10 at 14:20
Thanks, worked beautifully. – Paul Deen Apr 24 '12 at 10:45
Worked perfectly, even when using .each(). – gordian Jun 5 at 21:11

use this..

$(".content_box a:not('.button')")

share|improve this answer

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.