So warten Sie, bis eine Variable JavaScript festgelegt ist
function waitForElement(){
if(typeof someVariable !== "undefined"){
//variable exists, do what you want
}
else{
setTimeout(waitForElement, 250);
}
}
BlazingShadowsGamer