JSFiddle - React, Tailwind, and code Playground
by josh3736
HTML
<button>Open fullscreen</button>
JavaScript
$(function() {
$('button').click(function() {
window.open('http://www.google.com/','','fullscreen=1');
});
});
by josh3736
<button>Open fullscreen</button>
$(function() {
$('button').click(function() {
window.open('http://www.google.com/','','fullscreen=1');
});
});