I can select (using jQuery) all the divs in a HTML markup as follows:
$(\'div\')
But I want to exclude a particular div (say h
div
$("div:not(#myid)")
[doc]
or
$("div").not("#myid")
are main ways to select all but one id
You can see demo here