I have got a task to open the link in a new tab.For that I tried the below code
window.open($(this).attr("data-MenuLink"), 'target=_new');
and also window.open($(this).attr("data-MenuLink"), 'target=_blank');
But the problem is that when I click on the first time, it will load on new tab and work properly. But on second time it will just reload on the previously created tab, rather than new one. I need to open the window in new tab on each click