Created
April 18, 2011 21:28
-
-
Save stagas/926226 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
var $book = $('#book') | |
// wrapping the function in a closure | |
;(function display_icon() { | |
$book.hide(1000, function() { | |
$book.show(1000, function() { | |
setTimeout(function() { | |
display_icon(); | |
}, 0); | |
}); | |
}); | |
}()); // executing immediately | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment