Skip to content

Instantly share code, notes, and snippets.

@macikokoro
Created April 27, 2014 07:30
Show Gist options
  • Save macikokoro/11339681 to your computer and use it in GitHub Desktop.
Save macikokoro/11339681 to your computer and use it in GitHub Desktop.
Interactive jQuery code for a button.
$(document).ready(function() {
$('div').mouseenter(function() {
$('div').fadeTo('fast', 1);
});
$('div').mouseleave(function() {
$('div').fadeTo('fast', 0.5);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment