JSFiddle - React, Tailwind, and code Playground

by ernestohs

HTML

<html>
    
    <head>
        <title></title>
        <script type="text/javascript">
            function fullScreen(theURL) {
                params = 'width=' + screen.width;
                params += ', height=' + screen.height;
                params += ', top=0, left=0';
                params += ', fullscreen=yes';
                params += ', scrollbars=auto';

                window.open(theURL, '', params);
            }
        </script>
    </head>
    
    <body>
<a href="javascript:void(0);" onclick="fullScreen('http://jsbin.com/EHiJiCef/1');">Open Full Screen Window</a> 
    </body>

</html>