Skip to content

Instantly share code, notes, and snippets.

@jeanlucaslima
Created January 7, 2015 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeanlucaslima/846a4068448a2375363b to your computer and use it in GitHub Desktop.
Save jeanlucaslima/846a4068448a2375363b to your computer and use it in GitHub Desktop.
Callback example
$("button").click(function(){
$("p").hide("slow",function(){
alert("The paragraph is now hidden");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment