I have a webpage with an IFrame and a Button, once the button is pressed I need the IFrame to be refreshed. Is this possible, if so how? I searched and could not find any answers.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||||||||||
|
|
This should help:
EDIT: Fixed the object name as per @Joro's comment. |
||||
|
|
provided the iframe is loaded from the same domain, you can do this, which makes a little more sense:
|
|||
|
|
|
The idea is to replace innerHTML value of a div by its current innerHTML value. Here is the HTML snippet:
And my Javascript code:
Hope this helps. |
||||
|
|

