Skip to content

Instantly share code, notes, and snippets.

@galaakk
Created September 8, 2012 19:58
Show Gist options
  • Save galaakk/3679225 to your computer and use it in GitHub Desktop.
Save galaakk/3679225 to your computer and use it in GitHub Desktop.
jQuery : Simple slide-up
jQuery(function($) {
$('.classe').live('click',function(){
$(this).parent().slideUp();
return false;
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment