I dynamically load an iframe with javascript. After it's loaded, how can I make it scroll down a specific number of pixels (ie. after the page in the iframe has loaded, how can I make the iframe scroll by itself to the a specified region of the page?)
|
You can use the
You can check a working example here. Note: This will work if both pages reside on the same domain. |
|||||||||||||||||
|
|
Inspired by Nelsons comment I made this. Workaround for javascript Same origin policy with regards to using .ScrollTo( ) on document originating on an external domain. Very simple work around for this involves a creating a dummy html page that hosts the external website within it, then calling .ScrollTo(x,y) on that page once it's loaded. Then the only thing you need to do is have a frame or an iframe bring up this website. There are a lot of other ways to do it, this is by far the most simplified way to do it. *note the height must be large to accomodate the scroll bars maximum value. --home.htm
--weather.htm
|
||||
|
|
Use the
|
|||
|
|
|
A jQuery solution:
|
|||
|
|
|
I have just done this same thing with a div, I am sure you can adapt it for an iFrame. Have a look at this, you will see the div scroll down, view the source and look at line 680 onwards |
|||
|
|