Guest User

Untitled

a guest
Sep 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function () {
  2.     var i = setInterval(function () {
  3.         var foo = $("#whatever");
  4.         if (foo) {
  5.             clearInterval(i);
  6.             //Do other stuff here
  7.         }
  8.     }, 100);
  9. }());
Add Comment
Please, Sign In to add comment