Created
July 17, 2013 01:42
-
-
Save toadkicker/6016984 to your computer and use it in GitHub Desktop.
check for element and stop checking when done
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var checkExist = setInterval(function() { | |
| if ($('#the-canvas').length) { | |
| console.log("Exists!"); | |
| clearInterval(checkExist); | |
| } | |
| }, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment