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)');
this is what you need i think.