How to refresh an IFrame using Javascript?

var iframe = document.getElementById('youriframe');
iframe.src = iframe.src;

Leave a Comment