Guest User

Untitled

a guest
Jan 19th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function waitForJquery(callback){
  2. if (typeof $ === "undefined"){
  3. setTimeout(waitForJquery, 100, callback);
  4. return;
  5. }
  6. callback.call(undefined, $);
  7. }
Add Comment
Please, Sign In to add comment