JSFiddle - React, Tailwind, and code Playground

by akogch

HTML

<a href="#" id="hoo">Click Me</a>

JavaScript

hoo.onclick = function ShowWindow() {
  window.open(
    'https://gulpjs.com/docs/en/getting-started/quick-start/',
    'popUpWindow',
    'height=300,width=600,left=100,top=30,resizable=Yes,scrollbars=Yes,toolbar=no,menubar=no,location=no,directories=no, status=No',
  )
}