Ho provato con
e ho creato un div con id divToRefresh. Il problema che però lampeggia sempre la chat...e la chat se ne và sempre più giù..Codice PHP:<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript">
$(document).ready(function() {
$.ajaxSetup({ cache: false }); // This part addresses an IE bug. without it, IE will only
load the first number and will never refresh
setInterval(function() {
$('#divToRefresh').load('chat.php');
}, 3000); // the "3000" here refers to the time to refresh the div. it is in milliseconds. }); </script>

Rispondi quotando