JSFiddle - React, Tailwind, and code Playground

HTML

<a id="some-link" href="#">Test</a>

JavaScript

jQuery('#some-link').bind('click', function(e) {
   e.preventDefault();
   if (e.ctrlKey){
     window.open('http://someurl.com','_blank')
   }
});