codice:
$(document).ready(function() {
timeajax()//lancio la funzione al caricamento
  });
function timeajax(){
  $.ajaxSetup({ cache: false }); // This part addresses an IE bug.  without it, IE will only load the first number and will never refresh
   $('#notice_div').load('response.php');
 setTimeout(function() {timeajax()}, 3000); // the "3000" rilancio la funzione dopo 3 secondi 
}