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
That should do it:
$('div:not("#myid")')