I'm changing an IFRAME's src in order to reload it, its working fine and firing the onload event when its HTML loads.
But it adds an entry to the history, which I don't want. Is there any way to reload an IFRAME and yet not affect the history?
|
I'm changing an IFRAME's But it adds an entry to the history, which I don't want. Is there any way to reload an IFRAME and yet not affect the history? |
|||||||
|
|
You can use javascript
|
|||||||||||||||||
|
|
Using replace() is only an option with your own domain iframes. It fails to work on remote sites (eg: a twitter button) and requires some browser-specific knowledge to reliably access the child window. Instead, just remove the iframe element and construct a new one in the same spot. History items are only created when you modify the |
|||||||||
|
|
Like Greg said above, the .replace() function is how to do this. I can't seem to figure out how to reply to his answer*, but the trick is to reference the iFrames contentWindow property.
*Just learned I need more reputation to comment on an answer. |
|||
|
|