JSFiddle - React, Tailwind, and code Playground
by Vaibhav Deshwal
HTML
<div class="simple-div"><button id="fullscreen-toggler">Toggle Fullscreen</button></div>
CSS
.simple-div{
width: 100px;
height: 100px;
background-color: red;
}
#fullscreen-toggler{
z-index:101;
}
.full-page-div{
position: fixed;
width: 100%;
height: 100%;
top: 0;
left:0;
z-index: 100;
}
JavaScript
$('#fullscreen-toggler').on('click', function(){
$('.simple-div').toggleClass('full-page-div');
$('.simple-div')[0].webkitRequestFullScreen();
});