JSFiddle - React, Tailwind, and code Playground

by kachibito

HTML

<iframe id="frame"></iframe>

JavaScript

$(document).ready(function(){
        var locations = ["http://google.com", "http://webPage2.com"];
        var len = locations.length;
        var iframe = $('#frame');
        var i = 0;
        setInterval(function () {
            $(iframe).attr('src', locations[++i % len]);
        }, 30000);
      });