All pastes #2104511 Raw Edit

Unnamed

public text v1 · immutable
#2104511 ·published 2012-01-20 14:53 UTC
rendered paste body
JS : 
$(document).ready(function() {
	$('.news').load('news.html'); // For default load 
	var refreshId = setInterval(function() {
		$('.news').load('news.html?randval='+ Math.random()); // randval = no cache !
	}, 10000); // times in ms
	
});


HTML : 

<div id="news"></div>