JSFiddle - React, Tailwind, and code Playground

by Seungrae Lee

HTML

<button name="open" onclick="openWin();">
 open
</button>

JavaScript

function openWin() {
  window.open("http://home.asia.ad.nsk.com/","_blank",'width=1024,height=650,scrollbars=yes,menubar=yes,status=yes,resizable=yes,directories=false,location=false,left=0,top=0');
}