Skip to content

Instantly share code, notes, and snippets.

@wanye71
Created December 5, 2012 19:20
Show Gist options
  • Save wanye71/4218664 to your computer and use it in GitHub Desktop.
Save wanye71/4218664 to your computer and use it in GitHub Desktop.
jquery
$("#bar")
.css({
"background":"yellow",
"border":"1px solid black"
})
.hide(2000,function(){
console.log("Animation complete!");
});
$("#bar")
.css({
"background":"yellow",
"border":"1px solid black"
})
.show(2000,function(){
console.log("Animation complete!");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment