I was trying to reload a script from another page but it just refresh from machine cache not from the server. I used the parameter (true) to force it to be refreshed from server, but it just don't work. Do you have any idea of what is going on?
Supose, of course that the file.php3 is already opened.
<script language="JavaScript">
function refresh()
{
window.location="http://www.test/file.php3";
window.location.reload(true);
}
</script>
<a href="javascript:refresh()">Refresh Link</a></p>