149

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.

Elitmiar
  • 35,072
  • 73
  • 180
  • 229
  • 1
    possible duplicate of [What's the best way to reload an iframe using JavaScript?](http://stackoverflow.com/questions/86428/whats-the-best-way-to-reload-an-iframe-using-javascript) – j0k Jan 27 '15 at 16:33

13 Answers13

189
var iframe = document.getElementById('youriframe');
iframe.src = iframe.src;
kjagiello
  • 8,269
  • 2
  • 31
  • 47
  • 2
    It works for me in this version of Chrome: `Version 24.0.1312.56 Ubuntu 12.04 (24.0.1312.56-0ubuntu0.12.04.1)` – Paul A Jungwirth Mar 13 '13 at 17:13
  • 3
    FYI - There is currently (as of January 2013) a Chromium project bug (https://code.google.com/p/chromium/issues/detail?id=172859) which causes iframe updates to add to document history. – Robert Altman Apr 10 '13 at 16:58
  • If into iFrame change the page, this method lost the navigation – Eduardo Cuomo Jun 26 '13 at 12:15
  • 14
    `var tmp_src = iframe.src; iframe.src = ''; iframe.src = tmp_src;` – Lyfing Jan 27 '15 at 08:28
  • changing src of the iframe, generates a new element, then if you have a reference of that iframe, you should do that: `iframeEl.src = iframeEl.src; iframeEl = iframeEl.parentNode.getElementById('your-iframe-id');` – Acaz Souza Feb 03 '16 at 14:15
  • 2
    this perfectly work for me in chrome `document.getElementById('frame_id').contentDocument.location.reload(true);` – Haseeb Zulfiqar Jul 13 '16 at 09:01
  • @MianHaseeb It has already been mentioned in other answer below; also it works only for same-origin iframe. – Franklin Yu Nov 16 '18 at 15:21
  • I've tried this answer and location.reload(true), both failed. The only workable code is @lyfing's. – Zhang Jan 15 '21 at 03:38
115

This should help:

document.getElementById('FrameID').contentWindow.location.reload(true);

EDIT: Fixed the object name as per @Joro's comment.

nfechner
  • 17,295
  • 7
  • 45
  • 64
  • 3
    This is not working in IE9. You should use contentWindow instead contentDocument. – gotqn Aug 09 '12 at 11:24
  • 1
    Thanks for the answer. Additionally, If you must positively cause a refresh to another page to another within the iframe then instead of `reload(true)` you would use this: `document.getElementById('FrameID').contentWindow.location.replace(new_url);` – racl101 Aug 19 '14 at 21:54
  • 23
    This does not work with iframes with different origins (protocol, hostname or port). – michelpm Jul 24 '15 at 01:58
27

provided the iframe is loaded from the same domain, you can do this, which makes a little more sense:

iframe.contentWindow.location.reload();
Mohammad
  • 21,175
  • 15
  • 55
  • 84
Horia Dragomir
  • 2,858
  • 24
  • 21
7

Works for IE, Mozzila, Chrome

document.getElementById('YOUR IFRAME').contentDocument.location.reload(true);
Marek Pavelek
  • 1,097
  • 12
  • 12
7

You can use this simple method

function reloadFrame(iFrame) {

    iFrame.parentNode.replaceChild(iFrame.cloneNode(), iFrame);

}
3

Resetting the src attribute directly:

iframe.src = iframe.src;

Resetting the src with a time stamp for cache busting:

iframe.src =  iframe.src.split("?")[0] + "?_=" + new Date().getTime();

Clearing the src when query strings option is not possible (Data URI):

var wasSrc = iframe.src

iframe.onload = function() {
    iframe.onload = undefined;
    iframe.src = wasSrc;
}
lcharbon
  • 3,030
  • 2
  • 16
  • 18
2

Got this from here

var f = document.getElementById('iframe1');
f.src = f.src;
Amarghosh
  • 58,710
  • 11
  • 92
  • 121
2

2017:

If it in on same domain just :

iframe.contentWindow.location.reload();

will work.

pery mimon
  • 7,713
  • 6
  • 52
  • 57
2

If you use hash paths (like mywebsite.com/#/my/url) which might not refresh frames on switching hash:

<script>
    window.onhashchange = function () {
        window.setTimeout(function () {
            let frame = document.getElementById('myFrame');
            if (frame !== null) {frame.replaceWith(frame);}
        }, 1000);
    }
</script>

Unfortunately, if you don't use the timeout JS may try to replace the frame before the page has finished loading the content (thus loading the old content). I'm not sure of the workaround yet.

NotoriousPyro
  • 526
  • 3
  • 16
1

Here is the HTML snippet:

<td><iframe name="idFrame" id="idFrame" src="chat.txt" width="468" height="300"></iframe></td>

And my Javascript code:

window.onload = function(){
setInterval(function(){
    parent.frames['idFrame'].location.href = "chat.txt";
},1000);}
Tony
  • 91
  • 4
0

If you have Multiple iFrames inside the page, then this script might be useful. I am asuming there is a specific value in the iFrame source which can be used to find the specific iFrame.

var iframes = document.getElementsByTagName('iframe');
var yourIframe = null
for(var i=0; i < iframes.length ;i++){
    var source =  iframes[i].attributes.src.nodeValue;
    if(source.indexOf('/yourSorce') > -1){
        yourIframe = iframes[i];
    }   
}
var iSource = yourIframe.attributes.src.nodeValue;
yourIframe.src = iSource;

Replace "/yourSource" with value you need.

sarvesh singh
  • 319
  • 3
  • 4
0

If your iframe's URL does not change, you can just recreate it.

If your iframe is not from the same origin (protocol scheme, hostname and port), you will not be able to know the current URL in the iframe, so you will need a script in the iframe document to exchange messages with its parent window (the page's window).

In the iframe document:

window.addEventListener('change', function(e) {
  if (e.data === 'Please reload yourself') {
    var skipCache = true; // true === Shift+F5
    window.location.reload(skipCache);
  }
}

In your page:

var iframe = document.getElementById('my-iframe');
var targetOrigin = iframe.src; // Use '*' if you don't care
iframe.postMessage('Please reload yourself', targetOrigin);
michelpm
  • 1,795
  • 2
  • 18
  • 31
-2

You can use this:

Js:

function refreshFrame(){
    $('#myFrame').attr('src', "http://blablab.com?v=");
}

Html:

`<iframe id="myFrame" src=""></iframe>`

JS Fiddle : https://jsfiddle.net/wpb20vzx/

Ferhat KOÇER
  • 3,890
  • 1
  • 26
  • 26