HTML: how refresh information in [closed]

$(document).ready(function(){
  setInterval(function(){
    $.post('test.php', { someParameter: 'someValue' }, function(data){
      $('#my-container').html(data);
    });
  }, 30000);
});

Leave a Comment