How to open menu hyperlink in a new tab instead of new window?
In this case below is my code and its currently opening in new windows not same browser tab.
_bindEventsMain:function(){
$('.menu-link').on('click', HomeJs._menuClick);
}
_menuClick:function(e) {
e.preventDefault();
var href = $(this).attr('data-href');
var t = $(this).attr('data-title');
var popup = window.open(href,t, '_blank');
},