I have used to work with attribute:
target='_blank' <!-- in HTML -->
But with JavaScript i have tried:
windows.open('my_url' [, args]);
I want to open my_url
in another TAB but the problem with this function is it opens the url in a new window
I have tried also to add argument to the function like '_blank'
or '_newtab'
but not working.
Is there any solution to open url in new tab and not in a new window ?