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('//www.youtube.com/embed/XGSy3_Czz8k');">Open Full Screen Window</a>
</body>
</html>