I would like to reload an using JavaScript. The best way I found until now was set the iframe’s
src
attribute to itself, but this is
Simply replacing the src
attribute of the iframe element was not satisfactory in my case because one would see the old content until the new page is loaded. This works better if you want to give instant visual feedback:
var url = iframeEl.src;
iframeEl.src = 'about:blank';
setTimeout(function() {
iframeEl.src = url;
}, 10);