How to refresh an iframe?
For example:
<iframe src="http://google.com"></iframe>
I click on “Videos” in this iframe ,then click on a button to refresh the iframe and I want when the iframe is refreshed ,to be on that “Videos” page.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t refresh the inner document in there due to the single origin policy.
Have you tried changing the iframe’s
srcproperty and adding a random GET string to force a reload?This should work: