Skip to content

Instantly share code, notes, and snippets.

@stagas
Created April 18, 2011 21:28
Show Gist options
  • Save stagas/926226 to your computer and use it in GitHub Desktop.
Save stagas/926226 to your computer and use it in GitHub Desktop.
$(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