jQuery(document).ready(function() { jQuery("body").click(function(e) { var target = jQuery(e.target); if (target.hasClass('someclass')) return doSomeStuff(); if (target.hasClass('someotherclass')) return doOtherStuff(); }); });