Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function defer(method) {
  2.     if (window.jQuery)
  3.         method();
  4.     else
  5.         setTimeout(function () {
  6.             defer(method)
  7.         }, 200);
  8. }
  9.  
  10. function runTest() {
  11.     //test code
  12. }
  13.  
  14. defer(runTest);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement