8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
window.refreshURL = function(obj)
|
|
{
|
|
$this = $(obj);
|
|
$.get($this.data('href'));
|
|
loadPage($.createLink('cron', 'index'));
|
|
return false;
|
|
}
|