JSFiddle - React, Tailwind, and code Playground

by tymeJV

HTML

<div id="page">
    <center><iframe name="web" src="http://www.bing.com/" height="70%" width="70%">Please download a browser that supports iframes.</iframe></center>
    <center>
        <button type="submit" onclick="web.history.back();">Back</button>
        <button id="hide_btn">Hide</button>
        <button type="submit" onclick="web.history.forward();">Forward</button>
    </center>   
    </div>

JavaScript

$('#hide_btn').click(function () {
            $('#page').toggle();
        });