I hope this isn't a newbie question, but is it possible to jump to the top of the page after submitting.
Here is the situation:
- I am defaulting my form to display inside the table.
- After adding 20 files I go to the bottom of the page to hit the Upload button.
- The progress meter is at the top of the page so a user is left at the bottom in a blank space.
- I would like for the browser to jump back to the top upon hitting the Upload button.
Any ideas?
XUpload - XUpload Pro jump to top of page.
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
Sure. In xupload.js find
and add below:
Thats' it.
Code: Select all
setTimeout("openStatusWindow()",500);
Code: Select all
window.scrollTo(0,0);