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(\'*\
You want to use the :not() selector:
jQuery(":not(.ignore)").bind("click", function(e) { ... });