JSFiddle - React, Tailwind, and code Playground
by agib
HTML
<form>
<input type="button" value="Open Window" onclick="open_win()">
</form>
JavaScript
function open_win()
{
window.open("http://getbootstrap.com","_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=yes, width=400, height=400");
}