Sunday, 11 August 2013

scroll back to where I was after redirecting back to the same page

scroll back to where I was after redirecting back to the same page

I have a link in A.php that redirects to B.php. In B.php, i do something,
and redirect instantly back to A.php. I want it to also scroll to the
initial y position.
How can I do that?
I tried this
<body onUnload="document.cookie='ypos=' + window.pageYOffset"
onLoad='window.scrollTo(0,$_COOKIE["ypos"])'>
But it only works on refresh (not on redirect).

No comments:

Post a Comment