I am submitting some data to my database then reloading the same page as the user was just on, I was wondering if there is a way to remember the scroll position the user was just on?
|
|
I realized that I had missed the important part of submitting, so, I decided to tweak the code to store the cookie on click event instead of the original way of storing it while scrolling. Here's a jquery way of doing it: jsfiddle ( Just add Very importantly, you'll need the jquery cookie plugin. jQuery:
Here's still the code from the original answer: jQuery:
@Cody's answer reminded me of something important. I only made it to check and scroll to the position vertically. |
||||
|
|
(1) Solution 1: First, get the scroll position by JavaScript when clicking the submit button. Second, include this scroll position value in the data submitted to PHP page. Third, PHP code should write back this value into generated HTML as a JS variable:
Fourth, use JS to scroll to position specified by the JS variable 'Scroll_Pos' (2) Solution 2: Save the position in cookie, then use JS to scroll to the saved position when page reloaded. |
|||||
|
|
Store the position in an hidden field.
than with jQuery store the scrollTop and scrollLeft
Than on next reload do a redirect or print them with PHP
|
|||
|
|
|
Well, if you use _targets in your code you can save that. Or, you can do an ajax request to get the window.height.
Then drop them back, give the variable to javascript and move the page for them. |
|||
|
|