2
How do I get one div
on the return of AJAX
, for example:
I type in input a user, and send the data by AJAX
thus:
$("#botao").click(function(){
var xprocesso = $("#segundo").val();
$.post('aquirecebe.php',{processo:xprocesso},
function(data)
{
$(".aparecerresultado").html(data);
})
});
On the page that receives the data, make a check if the user you are looking for exists.
$sql = mysql_query("SELECT * FROM utilizadores WHERE n_processo = '".$processo."'");
if(!$sql)
{
echo '<script> swal("ERRO!", "Contacte o programador.", "error") </script>';
}else
{
$contar = 0;
$contar = mysql_num_rows($sql);
if($contar <= 0){
echo '<script> swal("Oops","Pedimos desculpa, mas o utilizador não foi encontrado.","error") </script>';
}else{
echo '<script> swal("Sucesso!", "Utilizador encontrado. Pode prosseguir para o registo.", "success") </script>';
}
}
so far everything ok. Now I wanted that when the success message appears (means that a user has been found), that a div
. How to return the code javascript
for AJAX
?