jQuery Simulate DOM building


/ Published in: jQuery
Save to your folder(s)



Copy this code and paste it in your HTML
  1. jQuery(function($) {
  2. (function n(e){
  3. e.eq(0).fadeIn(99,
  4. function(){
  5. n(e.slice(1))
  6. }
  7. )}
  8. )($(":visible").hide())
  9. })

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.