S
Simon Wigzell
I have a web page that sends it's form results to another page through asp.
When that page is finished processing it changes some values in the main
page. This can take a few seconds depending on system usage. I have a "wait"
cursor come up in the main form but it isn't always apparent when the
calculation is finished. I would like the results page to call a javascript
function in the main page that will "jog" the page within the browser, that
is move it up say 10 pixels and then move it down again 10 pixels so that
there is a visual clue that the calculation is finished. Can I use the
"scrollto" function? I've used it before to scroll to an absolute number of
pixels from the top of the page but can I use it to e.g.
scrollto(0,[whereever we are now - 10]);
scrollto(0,[whereever we are now + 10]);
What would be the syntax for that? Any other way to do it?
When that page is finished processing it changes some values in the main
page. This can take a few seconds depending on system usage. I have a "wait"
cursor come up in the main form but it isn't always apparent when the
calculation is finished. I would like the results page to call a javascript
function in the main page that will "jog" the page within the browser, that
is move it up say 10 pixels and then move it down again 10 pixels so that
there is a visual clue that the calculation is finished. Can I use the
"scrollto" function? I've used it before to scroll to an absolute number of
pixels from the top of the page but can I use it to e.g.
scrollto(0,[whereever we are now - 10]);
scrollto(0,[whereever we are now + 10]);
What would be the syntax for that? Any other way to do it?