My server sends page with many components to the client. All my pictures, js and css are cached.
In my page, there is a javascript like this :
function refresh(){
window.location.reload();
}
var timer = setInterval("refresh()", 60000);
In fact, I need to reload my page frequently to verify if there is new informations on my server.
But, the problem is : when I reload my page, all my components (pictures, css, js...) are revalidated. I would like to check only my information but not all components.
So, I would like to know if it's possible to revalidate only a part of my page, without pictures, js and css revalidation
Thanks