$(document).ready(function(){ //global vars var inputMessage = $("#message"); var loading = $("#loading"); var messageList = $(".feed_content > ul"); //functions function updateShoutbox(){ //just for the fade effect messageList.hide(); loading.fadeIn(); //send the post to shoutbox.php $.ajax({ type: "POST", url: "http://www.tsontatube.gr/wall.php", data: "action=index&ch=", complete: function(data){ loading.fadeOut(); messageList.html(data.responseText); messageList.fadeIn(1000); } }); } //Load for the first time the shoutbox data updateShoutbox(); window.setInterval(function() { updateShoutbox(); }, 60000); });