Guest User

Untitled

a guest
Jul 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function onReady(callback) {
  2. var intervalID = window.setInterval(checkReady, 250)
  3.  
  4. function checkReady() {
  5. if (document.getElementsByTagName('body')[0] !== undefined) {
  6. window.clearInterval(intervalID)
  7. callback.call(this)
  8. }
  9. }
  10. }
  11. onReady(function () {
  12. $('#loading').delay(2000).fadeOut(500)
  13. $('#wrapper').delay(2000).fadeIn(2000)
  14. });
Add Comment
Please, Sign In to add comment