JSFiddle - React, Tailwind, and code Playground
by dshilkret
HTML
<html>
<head>
</head>
<body>
<input type="button" value="Open Google" onclick="OpenWindow()" />
<script type="text/javascript">
function OpenWindow()
{
var url="Test2.html";
newWin=window.open(url, 'Popup','height=500,width=600,left=100,top=100,resizable=yes,scrollbars=no,toolbar=no,status=no');
if (newWin.focus())
{
self.focus();
}
}
</script>
</body>
</html>