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?
|
I can select (using jQuery) all the divs in a HTML markup as follows:
But I want to exclude a particular div (say having id=myid) from the above selection. How can I do this?
| |||||
feedback
|
|
Simple:
Using You can also use the
Do note that using the | |||||||||||
feedback
|
This will include all the divs except the one with id 'myid' | |||
|
feedback
|
|
You use the
See it in action here. The div #myDiv will be white. | |||
|
feedback
|
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 Adding elements to a set is just
Removing an element from a set is
You can't easily remove multiple elements at once :( | ||||
|
feedback
|
or
are main ways to select all but one id You can see demo here | ||||
|
feedback
|