Skip to content

Instantly share code, notes, and snippets.

@nulltask
Created July 27, 2011 05:26
Show Gist options
  • Save nulltask/1108741 to your computer and use it in GitHub Desktop.
Save nulltask/1108741 to your computer and use it in GitHub Desktop.
$('div')
.css({ opacty: 0 })
.animate({ opacity: 1 }, 1000, 'linear', function() {
if (this.style.filter) {
this.style.filter = '';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment