Skip to content

Instantly share code, notes, and snippets.

@tarzak
Created November 15, 2013 13:06
Show Gist options
  • Save tarzak/7484048 to your computer and use it in GitHub Desktop.
Save tarzak/7484048 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$("div").mouseenter(function() {
$(this).fadeTo("fast", 1);
});
$("div").mouseleave(function() {
$(this).fadeTo("fast", 0.25);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment