vote up 1 vote down star

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?

flag

Do you have to use an iframe? they're pretty dodgy overall, and I'd suspect this isn't the last problem you will run into. – grapefrukt Dec 25 '08 at 12:26
thanks for the comment . . is there an alternative that supports my requirement? – oo Dec 25 '08 at 12:39

closed as no longer relevant by oo Dec 29 '08 at 11:10

4 Answers

vote up 1 vote down check

Not really an answer to your question, but why not avoid iframes and just make a wordpress theme with your heading at the top?

Sorry I can't be more helpfull, but I'm not sure I understand the problem? You click on an image and it just shows a link to the image? What happens if you hit backspace instead of the back button after clicking on the iframe?

I dislike frames in general and try to avoid them when possible. Also, this sort of seems like the time when a normal frameset (not an iframe) would be the way to go. It would avoid the scripting too.

link|flag
vote up 0 vote down

If you publish the full text of the blog via RSS you could write something that would consume the RSS on your website and get something close to what you want.

Partly out of curiosity, why are you trying to embed your wordpress blog (which you have to host somewhere) in your website (which you also have to host somewhere)? Are they not on the same server? Or is it that you can't get the Wordpress blog to look like the rest of your site?

If its the latter, you'd be better off asking for help with doing that. If the former, you may want to look more at the RSS option.

link|flag
vote up 0 vote down

The web site you got that from doesn't have that problem. Perhaps you need to add an event that reruns the script on refresh or whatever.

link|flag
vote up 0 vote down

I have fixes the problem by simply removing the situation. I put my header into the wordpress script and got rid of the iframe all together

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.