appAPI.openURL Issue in Firefox and IE

100 Views Asked by At

I am facing a Issue in appAPI.openURL parameter popup.

I expected popup parameter will open my URL as popup window. but it is popping under the main window. which is not my requirement.

I need to open my window as popup (modal popup) but not as pop under.

this is how i am doing it

appAPI.openURL({
url: href,
where: "popup",
focus: false
});

Any help would be appreciated.

2

There are 2 best solutions below

1
On BEST ANSWER

Opening a modal window/popup has limited support by browsers/JavaScript and is less likely to work/be supported cross browser.

The nearest cross browser option you can achieve is to specify the where property of appAPI.openURL as window to open a popup window that is not modal.

appAPI.openURL({
  url: href,
  where: "window",
  focus: false
});

[Disclosure: I am a Crossrider employee]

0
On
    appAPI.openURL({
        url: href,
        where: "window",
        focus: true,
        height:window.screen.availHeight,
        width:window.screen.availWidth
    });

This opens a popup window above my browser.