Skip to content

Instantly share code, notes, and snippets.

@ShuvoHabib
Created October 4, 2018 08:13
Show Gist options
  • Save ShuvoHabib/324fb200bf40c28f57f1ca84308da538 to your computer and use it in GitHub Desktop.
Save ShuvoHabib/324fb200bf40c28f57f1ca84308da538 to your computer and use it in GitHub Desktop.
Check Element
var elementCheck = setInterval(function () {
if(jQuery('#selector').length > 0) {
// Your Code
clearInterval(elementCheck);
}
},1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment