JSFiddle - React, Tailwind, and code Playground
HTML
<a href="http://stackoverflow.com/" target="_blank">Open Page</a>
JavaScript
$('a').click(function (e){
if (e.ctrlKey) {
return false;
}
});
<a href="http://stackoverflow.com/" target="_blank">Open Page</a>
$('a').click(function (e){
if (e.ctrlKey) {
return false;
}
});