Check to see if the Ctrl
key is pressed, and open the link using window.open
. The link may not open in a new tab though. See the discussion here.
jQuery('#some-link').bind('click', function(e) {
e.preventDefault();
if (e.ctrlKey){
window.open('http://someurl.com','_blank')
}
});
See JSFiddle