1
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 make sure that when the modal opens, Function is waiting and does not perform the rest until you var Name has a value, so only after you finish executing the rest.