Skip to content

Instantly share code, notes, and snippets.

@darthdeus
Created December 8, 2010 15:04
Show Gist options
  • Save darthdeus/733378 to your computer and use it in GitHub Desktop.
Save darthdeus/733378 to your computer and use it in GitHub Desktop.
/*************************
PRVNI MOZNOST
*************************/
var poSchovani = function() {
alert("schovano");
}
$("#odstavec").hide(2000, poSchovani);
/*************************
DRUHA LEPSI MOZNOST
*************************/
$("#odstavec").hide(2000, function() {
alert("schovano");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment