Skip to content

Instantly share code, notes, and snippets.

@timoschilling
Created March 2, 2011 01:36
Show Gist options
  • Save timoschilling/850299 to your computer and use it in GitHub Desktop.
Save timoschilling/850299 to your computer and use it in GitHub Desktop.
jQuery snippet that simulates the DOM building via https://twitter.com/jquery/status/42756061685497856
jQuery(function($) {
(function n(e){
e.eq(0).fadeIn(99,
function(){
n(e.slice(1))
}
)}
)($(":visible").hide())
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment