I would like to know if it is possible to compare a returned value of an Ajax function with an external variable using jquery.
When I try to make the comparison I realize that the external variable is not recognized inside the Ajax function.
How can I do this check as the example?
$(document).ready(funcntion(e){ var variavel = 123; //define um valor //busca um valor para a comparação $.ajax({ url:'script.php', type:'post', dataType:'json', success: function(result){ //verifica se retornou um objeto if(typeof(result) == 'object') { //separa o valor retornado var num = result[0]; //comparar o valor retornado com a variável declarada if(num == variavel){ alert('o valor é igual'); }else{ alert('o valor é diferente'); } } } }); }