JSFiddle - React, Tailwind, and code Playground

HTML

<a href="http://stackoverflow.com/" target="_blank">Open Page</a>

JavaScript

$('a').keypress(function (e){  
    if (e.ctrlKey && e.keyCode === 13) {
        return false;
    }
});