Dans le head de la page web:

 

<meta http-equiv="refresh" content="900">
window.setTimeout(function(){
//refresh the page after 900,000 miliseconds (15 minutes)

Dans un script : 



//reload the page (javascript has many ways of doing this)
location.reload();
},900000);
Affichages : 3000