Is it possible to tell window.location.href
to go back 2 pages in history and reload the page that is called?
i only managed to get it to work like this:
<script type="text/javascript">
window.location.href = "http://www.google.com/";
</script>
Everything else i try with the command history.back(-2)
does not work in my case.