Skip to content

Instantly share code, notes, and snippets.

@dannko
Created June 11, 2014 12:35
Show Gist options
  • Save dannko/aa7fbec5d4407ba0460e to your computer and use it in GitHub Desktop.
Save dannko/aa7fbec5d4407ba0460e to your computer and use it in GitHub Desktop.
Хайлайт при наведении и фейд кнопки jquery
$(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