Code: Select all
(function($)
{
$(document).ready(function()
{
$.ajaxSetup(
{
cache: false,
beforeSend: function() {
$('#content').hide();
$('#loading').show();
},
complete: function() {
$('#loading').hide();
$('#content').show();
},
success: function() {
$('#loading').hide();
$('#content').show();
}
});
var $container = $("#table_data");
$container.load("current_table.php");
var refreshId = setInterval(function()
{
$container.load('current_table.php');
}, 9000);
});
})(jQuery);Code: Select all
(function($)
{
$(document).ready(function()
{
$.ajaxSetup(
{
cache: false,
beforeSend: function() {
$('#content').hide();
$('#loading').show();
},
complete: function() {
$('#loading').hide();
$('#content').show();
},
success: function() {
$('#loading').hide();
$('#content').show();
}
});
var $container = $("#10_min");
$container.load("./somewhere/cumulustags.php");
var refreshId = setInterval(function()
{
$container.load('./somewhere/cumulustags.php');
}, 9000);
});
})(jQuery);