JSFiddle - React, Tailwind, and code Playground
HTML
<h2>IE9 Test</h2>
<p><a onclick="openWindow('http://google.com')"/>Popup 1 </a></p>
JavaScript
openWindow = function (url) {
newwindow=window.open(url,'_blank','height=200,width=150');
if (window.focus) {newwindow.focus()}
return false;
}