I have the same problem and I have not found the right solution yet,
but I can give you a very good workaround for this problem.
Just scroll up to to load the next page.
When the user returns, the browser will move up.
Example:
First page:
<a href="page2.htm" onclick="window.scrollTo(0, 0);">Next</a>
Second page:
<a href="page1.htm" onclick="history.go(-1); return false;">Back</a>
Please note that href="page1.htm"
only loads if the user chooses to open in a new window / tab
Sorry my english. Hope this helps.
source share