Skip to content

Instantly share code, notes, and snippets.

@internoma
Created May 20, 2013 18:53
Show Gist options
  • Save internoma/5614409 to your computer and use it in GitHub Desktop.
Save internoma/5614409 to your computer and use it in GitHub Desktop.
$('a').click(function (event) {
// Añade efecto a los enlaces - fade
$('a').click(function (event) {
$(this).hide(0,function () {
$(this).fadeTo('slow',1);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment