#13784
af3
Guest

For clarifications: wouldnt this work ?
I used the 5-day demo to load a webpage with iframe; and it is not updating the iframe content. I tried putting this on the parent html page but still the iframe is not updated. Is it due to the plugin? meta refresh header is also not working to update the iframe content.

<script>
window.setInterval(“reloadIFrame();”, 3000);

function reloadIFrame() {
document.frames[“frameNameHere”].location.reload();
}
</script>