Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was wondering how could I reload any website using javascript and set it in a way that when it reloads the scrollbar is looking scrolled down to a certain position. I'm unsure as to how to look for this in Google honestly so I haven't digged up much =/.

I think it has to be somewhere in the instruction to reload it and so far I have:

document.getElementById('life').contentWindow.scroll(0,0); //doesn't work
        document.getElementById('life').contentWindow.location.reload();

although the first one gets me:

Permission denied to get property Window.scroll of http://www.google.com.

share|improve this question

1 Answer

up vote 0 down vote accepted

If the website in the iframe is from a different domain than the current page, you won't be allowed to affect it at all with Javascript. This is an intentional property of Javascript to prevent XSS.

share|improve this answer
thanks for the info :) – Luis Armando Mar 19 '10 at 16:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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