JSFiddle - React, Tailwind, and code Playground
HTML
<button id="b1">Open</button>
JavaScript
$(document).ready(function(){
$("#b1").click(function(){
var url = 'http://fiddle.jshell.net/dirtyd77/rmEvY/5/show/?test=yeuCLMppZzc';
window.open(url, '_blank', "height=400,width=450"); //set height and width to make new window
});
});