W3cubDocs

/DOM

Clients.openWindow

This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The openWindow() method of the Clients interface creates a new top level browsing context and loads a given URL. If the calling script doesn't have permission to show popups, openWindow() will throw an InvalidAccessError.

In Firefox, the method is allowed to show popups only when called as the result of a notification click event.

In Chrome for Android, the method may instead open the URL in an existing browsing context provided by a standalone web app previously added to the user's home screen.

Syntax

ServiceWorkerClients.openWindow(url).then(function(WindowClient) {
  // do something with your WindowClient
});

Parameters

url
A USVString representing the URL of the client you want to open in the window. Generally this value must be a URL from the same origin as the calling script.

Return value

A Promise that resolves to a WindowClient object if the URL is from the same origin as the service worker or a null value otherwise.

Examples

// When the user clicks a notification focus the window if it exists or open
// a new one otherwise.
onotificationclick = function(event) {
  var found = false;
  clients.matchAll().then(function(clientsArr) {
    for (i = 0; i < clientsArr.length; i++) {
      if (clientsArr[i].url === event.data.url) {
        // We already have a window to use, focus it.
        found = true;
        clientsArr[i].focus();
        break;
      }
    }
    if (!found) {
      // Create a new window.
      clients.openWindow(event.data.url).then(function(windowClient) {
        // do something with the windowClient.
      });
    }
  });
};

Specifications

Specification Status Comment
Service Workers
The definition of 'Clients: openWindow' in that specification.
Working Draft Initial definition.

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support 40
40
42
Can only open URLs on the same origin.
43
Can open any URL.
51
URLs may open inside an existing browsing context provided by a standalone web app
? 45
45
Service workers (and Push) have been disabled in the Firefox 45 & 52 Extended Support Releases (ESR).
No 38 No
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support 40
40
42
Can only open URLs on the same origin.
43
Can open any URL.
51
URLs may open inside an existing browsing context provided by a standalone web app
40
40
42
Can only open URLs on the same origin.
43
Can open any URL.
51
URLs may open inside an existing browsing context provided by a standalone web app
? 45 38 No 4.0
4.0
5.0
URLs may open inside an existing browsing context provided by a standalone web app

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Clients/openWindow