JSFiddle - React, Tailwind, and code Playground

by vipTelnet

HTML

<!DOCTYPE html>
<html>
<body>

<p>Click the button to open a new window with some specifications.</p>

<button onclick="myFunction()">Try it</button>

<script>
function myFunction() {
    window.open("https://www.w3schools.com", "_blank", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=100,left=100,width=600,height=500");
}
</script>

</body>
</html>