I can select (using jQuery) all the divs in a HTML markup as follows:

$(div)

But I want to exclude a particular div (say having id=myid) from the above selection.

How can I do this?

link|improve this question

55% accept rate
1  
use the not selector in jquery – abhi Oct 29 '11 at 10:23
feedback

7 Answers

up vote 5 down vote accepted

Simple:

$('div').not('#myid');

Using .not() will remove elements matched by the selector given to it from the set returned by $('div').

You can also use the :not() selector:

$('div:not("#myid")');

Do note that using the .not() function is better than the :not() selector; it's faster and results in cleaner code.

link|improve this answer
1  
The :not() selector is the devil! – Raynos Oct 29 '11 at 10:30
@Raynos I don't think it's necessarily bad, but using .not() is far, far better than :not(). – JamWaffles Oct 29 '11 at 10:39
I think it should be $('div:not(#myid)'); (without quotes). @Raynos: Why? :not() is a CSS3 selector. jQuery can directly pass the selector to querySelectorAll if supported... – Felix Kling Oct 29 '11 at 11:34
@FelixKling it's fine as a part of selectors4. However in jQuery it's slower then .not and less readable. I should have said ":not selector in jQuery" – Raynos Oct 29 '11 at 11:36
feedback
   var elements =  $('div').not('#myid');

This will include all the divs except the one with id 'myid'

link|improve this answer
feedback
$('div:not(#myid)');

this is what you need i think.

link|improve this answer
feedback

That should do it:

$('div:not("#myid")')
link|improve this answer
feedback

You use the .not property of the jQuery library:

$('div').not('#myDiv').css('background-color', '#000000');

See it in action here. The div #myDiv will be white.

link|improve this answer
feedback
var els = toArray(document.getElementsByTagName("div"));
els.splice(els.indexOf(document.getElementById("someId"), 1);

You could just do it the old fashioned way. No need for jQuery with something so simple.

Pro tips:

A set of dom elements is just an array, so use your favourite toArray method on a NodeList.

Adding elements to a set is just

set.push.apply(set, arrOfElements);

Removing an element from a set is

set.splice(set.indexOf(el), 1)

You can't easily remove multiple elements at once :(

link|improve this answer
feedback
$("div:not(#myid)")

[doc]

or

$("div").not("#myid")

[doc]

are main ways to select all but one id

You can see demo here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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