Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript while function is not defined wait

function waitForElement(){
    if(typeof someVariable !== "undefined"){
        //variable exists, do what you want
    }
    else{
        setTimeout(waitForElement, 250);
    }
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #javascript #function #defined #wait
ADD COMMENT
Topic
Name
8+2 =