Skip to content

Instantly share code, notes, and snippets.

@Borovensky
Created April 23, 2016 13:23
Show Gist options
  • Save Borovensky/2fef5f0a61c7f32a6b8d56a477f6fdd0 to your computer and use it in GitHub Desktop.
Save Borovensky/2fef5f0a61c7f32a6b8d56a477f6fdd0 to your computer and use it in GitHub Desktop.
$.fn.iconHover = function () {
return $(this).hover(
function(){
$(this).stop().fadeTo("fast", 1)
},
function(){
$(this).stop().fadeTo("slow", 0.5)
}
);
}
$(".your_element").iconHover();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment