Hi All,
I have a simple request to refresh a page using a Javascript code below:
function tb_closeRefresh() {
window.location.reload(true);
}
This works fine in IE but Firefox just gets the cached version and needs the user to press F5 to get the latest version of the page.
I have added the meta tag:
<meta http-equiv="Pragma" content="no-cache">
But this does not help.
Any ideas???