im trying to open a url in IE mode in microsoft edge browser.
When a url is first opened I want it to open in a new tab in IE mode, and then use the same tab id for any future opening of the url. but it doesn't. it always opens in a new tab.
the origin url is without IE mode.
without the IE mode , its working fine.
the code:
window.open("some URL", "tabId")
*I want that the url will be open in different tab than the current tab
does anyone knows if its possible or how to do it ?
thanks a lot
You need to use the "_self" name attribute for example
window.open("https://www.aurl.com","_self")