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
var elements = $('div').not('#myid');
This will include all the divs except the one with id 'myid'