6 lines
152 B
JavaScript

$(document).ready(function(){
setInterval(function() {
$('#table-component').load(window.location.pathname +" #table-component");
}, 5000);
});