i am trying to embed a wordpress blog into my website. I have a heading at the top of the page so i thought the best way of doing this was to put the link into an iframe
<iframe id="myframe" src="http://foo.com/myblog" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" style="overflow:visible; width:100%;"></iframe>
so then i run into the iframe vertical height problem. I got this script below to help solve that problem and it works nicely except for one annoying flaw
http://www.dynamicdrive.com/dynamicindex17/iframessi2.htm
So when i add this script i get a fully size iframe with no scroll bars. I can scroll down (on my outer page) to the bottom of the blog. The issue is:
when i click on a image in the blog, it shows up in the iframe as a link to the image, but WHEN I CLICK BACK, it SCROLLS BACK UP TO THE TOP OF THE SCREEN.
if i load the blog in its own browser window and click on an image, when i click back, it remembers the location (height) where i was and brings me back to that anchor.
Is there anyway to get this behavior and still use the iframe?
