JSFiddle - React, Tailwind, and code Playground

by Karla Hernandez

HTML

<iframe src="http://jquery.com/" id="myFrame" width="500" marginwidth="0" height="500" marginheight="0" align="middle" scrolling="auto"></iframe>
    <button onclick="loadPages()">Click Me</button>
    <script>
        function loadPages(){
            var loc = "http://www.w3schools.com/";
            document.getElementById('myFrame').setAttribute('src', loc);
        }
    </script>