How do I get a div
in return of AJAX
, for example:
I write in the input a user, and sends the data by AJAX
like this:
$("#botao").click(function(){
var xprocesso = $("#segundo").val();
$.post('aquirecebe.php',{processo:xprocesso},
function(data)
{
$(".aparecerresultado").html(data);
})
});
On the page that receives the data, it checks whether 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 so good. Now I wanted it to appear when a success message (means a user was found), that a div
appears. How do I return the code javascript
by AJAX
?