I have the following function
sistema('/comando2'); //estou chamando assim
sistema(cmd)
{ if((req.state == 4) && (req.status == 200))//verifica a request do XMLHttpRequest
{
if(cmd.search("/comando1")>=0) {faz algo//}
if(cmd.search("/comando2")>=0) {chama uma function que abre um modal com uma input para digitar algo, depois salva o valor digitado em uma var chamada **Nome**}
}
///faz outra coisa
}
How do I do that when the modal opens, the function waits and does not execute the rest until the var Name has a value, then only finish after executing the rest. >