Skip to content

Instantly share code, notes, and snippets.

@andrewboni
Created April 29, 2013 05:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewboni/5479812 to your computer and use it in GitHub Desktop.
Save andrewboni/5479812 to your computer and use it in GitHub Desktop.
$('*').hover(
function(e){
$(this).css('border', '1px solid black');
e.preventDefault();
e.stopPropagation();
return false;
},function(e){
$(this).css('border', 'none');
e.preventDefault();
e.stopPropagation();
return false;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment