I\'m looking for a way to select all elements on a page, except those with a specified DOM location.. Here\'s an example of what I\'d like to do:
jQuery(\'*\
jQuery not-selector to the rescue!
$('*:not(.ignore)').bind('click', function(e) { ... });