Hello everyone, I want to get a specific area of what is coming from the other page, for example what comes from the other page, I get the div with id like I would with my script?
<script type="text/javascript">
// Função responsável por atualizar as frases
function atualizar()
{
// Fazendo requisição AJAX
$('#mensagensinbox').load("functions/atumensainbox.php?id_log_ass=<?php echo $id_log_ass; ?>");
}
// Definindo intervalo que a função será chamada
setInterval("atualizar()", 10000);
// Quando carregar a página
$(function() {
// Faz a primeira atualização
atualizar();
});
</script>