In HTML, if I wanted a link to open in a new window, I\'d adopt target=\"_blank\" like this:
you can remove the default action of the link in js as
$('#button-id').click(function(e){ e.preventDefault(); });
The preventDefault() function prevents the default action of the event