I've created a ribbon button inside my Dynamics 365 crm. On click, the ribbon Button should open a new tab with some stuff in it.
The problem:
This is the code launched when its clicked:
function OpenPage ()
{
Xrm.Utility.openWebResource("new_someWebResourceHTML");
}
the code actually works, and it works well, it opens a new window new_someWebResourceHTML.html.
The question:
Is there some way to open a web resource on a new tab, instead of a new window, using javascript?
Thanks for any help