Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <script>
  2. function onReady(callback) {
  3. var intervalID = window.setInterval(checkReady, 1000);
  4.  
  5. function checkReady() {
  6. if (document.getElementsByTagName('body')[0] !== undefined) {
  7. window.clearInterval(intervalID);
  8. callback.call(this);
  9. }
  10. }
  11. }
  12.  
  13. function show(id, value) {
  14. document.getElementById(id).style.display = value ? 'block' : 'none';
  15. }
  16.  
  17. onReady(function () {
  18. show('all', true);
  19. show('loading', false);
  20. });
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement