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

This is probably pretty simple.

I want to select all elements of a given class "thisClass", except where the id is of a given id "thisId".

i.e. something equivalent to (where -/minus implies remove):

$(".thisClass"-"#thisId").doAction();

share|improve this question

2 Answers

up vote 50 down vote accepted

Use the :not selector.

$(".thisclass:not(#thisid)").doAction();
share|improve this answer

$(".thisClass[id!='thisId'").doAction();

Documentation on selectors: http://api.jquery.com/category/selectors/

share|improve this answer
1  
did you mean $(".thisClass[id!='thisId']").doAction(); ? – detay Jun 23 '11 at 11:16
3  
Is there a missing ']' in the code sample? – David Oct 26 '12 at 20:36

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.