Skip to content

Instantly share code, notes, and snippets.

@Coopeh
Created November 2, 2012 17:57
Show Gist options
  • Save Coopeh/4003191 to your computer and use it in GitHub Desktop.
Save Coopeh/4003191 to your computer and use it in GitHub Desktop.
jQuery Multiple :not Selectors
jQuery('a:not([href^=mailto]):not(".bsub")').click(function() {
var location = jQuery(this).attr('href');
jQuery('#content').animate({
opacity: 0
}, 250);
jQuery('.bounce').animate({
left: -500
}, 300, function() {
document.location = location;
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment