function RefreshContent(mod,liga_id) { $.ajax({ type: "GET", url: public_root_path+"/ajax.php", data: "mod="+mod+"&liga_id="+liga_id, success: function(xml){ $("#ajax_content").html(xml); } }); } function Refresh_Init(mod,liga_id) { setInterval( "RefreshContent('"+mod+"','"+liga_id+"')", 60000 ); }