JSFiddle - React, Tailwind, and code Playground
HTML
<body>
Google
<a id="test" href="http://www.stupidcodes.com" target="_blank" >Open Google</a>
</body>
JavaScript
$(document).ready(function(e) {
$("#test").click(function(e) {
var a = document.createElement("a");
// a.href = "http://www.google.com/";
var evt = document.createEvent("MouseEvents");
//the tenth parameter of initMouseEvent sets ctrl key
evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, true, false, false, false, 0, null);
evt.target="_blank"
a.dispatchEvent(evt);
});
});