JSFiddle - React, Tailwind, and code Playground

by oroce

HTML

<iframe src="http://index.hu" width="300" height="300"></iframe>

JavaScript

setTimeout(function() {
    $("iframe").each(function(i, elem) {
        reloadiFrame.call(elem);
    });
}, 3500);

function reloadiFrame() {
    this.src = this.src;
}