--- title: Notifiche slug: Web/API/notifiche translation_of: Web/API/Notification ---

{{APIRef("Web Notifications")}}

L'interfaccia Notification di Notifications API viene usata per configurare e mostrare le notifiche desktop all'utente.

{{AvailableInWorkers}}

Costruttore

{{domxref("Notification.Notification", "Notification()")}}
Crea una nuova istanza dell'oggetto Notification.

Proprietà

Proprietà Static

Queste proprietà sono disponibili solo sull'oggetto Notification stesso.

{{domxref("Notification.permission")}} {{readonlyinline}}
Una stringa che rappresenta l'attuale permesso per mostrare le notifiche. I possibili valori sono: denied (l'utente rifiuta la ricezione delle notifiche), granted (l'utente accetta la ricezione delle notifiche), o default (la scelta dell'utente è sconosciuta, quindi il browser agirà come se il valore fosse negato).

Proprietà Instance

Queste proprietà sono disponibili solo su istanze dell'oggetto Notification.

{{domxref("Notification.actions")}} {{readonlyinline}}
L'array di azioni della notifica come specificato nel parametro options del costruttore.
{{domxref("Notification.badge")}} {{readonlyinline}}
L'URL dell'immagine utilizzata per rappresentare la notifica quando non c'è abbastanza spazio per visualizzare la notifica stessa.
{{domxref("Notification.body")}} {{readonlyinline}}
La stringa del corpo della notifica come specificato nel parametro options del costruttore.
{{domxref("Notification.data")}} {{readonlyinline}}
Restituisce un clone strutturato dei dati della notifica.
{{domxref("Notification.dir")}} {{readonlyinline}}
La direzione del testo della notifica come specificato nel parametro options del costruttore.
{{domxref("Notification.lang")}} {{readonlyinline}}
Il codice della lingua della notifica come specificato nel parametro options del costruttore.
{{domxref("Notification.tag")}} {{readonlyinline}}
L'ID della notifica (se presente) come specificato nel parametro options del costruttore.
{{domxref("Notification.icon")}} {{readonlyinline}}
L'URL dell'immagine utilizzata come icona della notifica come specificato nel parametro options del costruttore.
{{domxref("Notification.image")}} {{readonlyinline}}
L'URL di un'immagine da visualizzare come parte della notifica, come specificato nel parametro options del costruttore.
{{domxref("Notification.requireInteraction")}} {{readonlyinline}}
Un {{jsxref("Boolean")}} che indica che una notifica deve rimanere attiva finché l'utente non fa click o non la chiude, anziché chiudersi automaticamente.
{{domxref("Notification.silent")}} {{readonlyinline}}
Specifica se la notifica deve essere silenziosa, ovvero che non emetta suoni o vibrazioni, indipendentemente dalle impostazioni del dispositivo.
{{domxref("Notification.timestamp")}} {{readonlyinline}}
Specifica l'ora in cui viene creata o applicata una notifica (passato, presente o fututo).
{{domxref("Notification.title")}} {{readonlyinline}}
Il titolo della notifica come specificato nel primo parametro del costruttore.
{{domxref("Notification.vibrate")}} {{readonlyinline}}
Specifica un modello di vibrazione da emettere per i dispositivi con hardware di vibrazione.

Proprietà non supportate

Le seguenti proprietà sono elencate nelle specifiche più aggiornate, ma non sono ancora supportate da alcuni browser. È consigliabile controllare regolarmente per vedere se lo stato di queste proprietà viene aggiornato, e facci sapere se trovi informazioni non aggiornate.

{{domxref("Notification.noscreen")}} {{readonlyinline}}
Specifica se l'attivazione della notifica deve abilitare o meno lo schermo del dispositivo.
{{domxref("Notification.renotify")}} {{readonlyinline}}
Specifica se l'utente deve essere avvisato dopo che una nuova notifica sostituisce una vecchia.
{{domxref("Notification.sound")}} {{readonlyinline}}
Specifica una risorsa sonora da riprodurre quando scatta la notifica, al prosto del suono di notifica predefinito del sistema.
{{domxref("Notification.sticky")}} {{readonlyinline}}
Specifica se la notifica deve essere "sticky", cioè non facilmente modificabile dall'utente.

Gestori di eventi

{{domxref("Notification.onclick")}}
Un gestore per l'evento {{event("click")}}. Viene attivato ogni volta che l'utente fa click sulla notifica.
{{domxref("Notification.onerror")}}
Un gestore per l'evento {{event("error")}}. Viene attivato ogni volta che la notifica incontra un errore.

Obsolete handlers

The following event handlers are still supported as listed in the {{anch("browser compatibility")}} section below, but are no longer listed in the current spec. It is safe therefore to assume they are obsolete, and may stop working in future browser versions.

{{domxref("Notification.onclose")}}
A handler for the {{event("close")}} event. It is triggered when the user closes the notification.
{{domxref("Notification.onshow")}}
A handler for the {{event("show")}} event. It is triggered when the notification is displayed.

Methods

Static methods

These methods are available only on the Notification object itself.

{{domxref("Notification.requestPermission()")}}
Requests permission from the user to display notifications.

Instance methods

These properties are available only on an instance of the Notification object or through its prototype. The Notification object also inherits from the {{domxref("EventTarget")}} interface.

{{domxref("Notification.close()")}}
Programmatically closes a notification.

Example

Assume this basic HTML:

<button onclick="notifyMe()">Notify me!</button>

It's possible to send a notification as follows — here we present a fairly verbose and complete set of code you could use if you wanted to first check whether notifications are supported, then check if permission has been granted for the current origin to send notifications, then request permission if required, before then sending a notification.

function notifyMe() {
  // Let's check if the browser supports notifications
  if (!("Notification" in window)) {
    alert("This browser does not support desktop notification");
  }

  // Let's check whether notification permissions have already been granted
  else if (Notification.permission === "granted") {
    // If it's okay let's create a notification
    var notification = new Notification("Hi there!");
  }

  // Otherwise, we need to ask the user for permission
  else if (Notification.permission !== 'denied') {
    Notification.requestPermission(function (permission) {
      // If the user accepts, let's create a notification
      if (permission === "granted") {
        var notification = new Notification("Hi there!");
      }
    });
  }

  // At last, if the user has denied notifications, and you
  // want to be respectful there is no need to bother them any more.
}

{{EmbedLiveSample('Example', '100%', 30)}}

In many cases, you don't need to be this verbose. For example, in our Emogotchi demo (see source code), we simply run {{domxref("Notification.requestPermission")}} regardless to make sure we can get permission to send notifications (this uses the newer promise-based method syntax):

Notification.requestPermission().then(function(result) {
  console.log(result);
});

Then we run a simple spawnNotification() function when we want to fire a notification — this is passed arguments to specify the body, icon and title we want, then it creates the necessary options object and fires the notification using the {{domxref("Notification.Notification","Notification()")}} constructor.

function spawnNotification(theBody,theIcon,theTitle) {
  var options = {
      body: theBody,
      icon: theIcon
  }
  var n = new Notification(theTitle,options);
}

Specifications

Specification Status Comment
{{SpecName('Web Notifications')}} {{Spec2('Web Notifications')}} Living standard

Browser compatibility

{{CompatibilityTable}}

Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari
Basic support 5{{property_prefix("webkit")}}[1]
22
{{CompatVersionUnknown}} 4.0 {{property_prefix("moz")}}[2]
22
{{CompatNo}} 25 6[3]
icon 5{{property_prefix("webkit")}}[1]
22
{{CompatUnknown}} 4.0 {{property_prefix("moz")}}[2]
22
{{CompatNo}} 25 {{CompatNo}}
Available in workers {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatGeckoDesktop("41.0")}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
silent {{CompatChrome(43.0)}} {{CompatUnknown}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}}
noscreen, sticky {{CompatNo}} {{CompatUnknown}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}}
sound {{CompatNo}} {{CompatUnknown}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}}
renotify {{CompatChrome(50.0)}} {{CompatUnknown}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}}
Promise-based Notification.requestPermission() {{CompatChrome(46.0)}} {{CompatUnknown}} {{CompatGeckoDesktop("47.0")}} {{CompatUnknown}} {{CompatOpera(40)}} {{CompatNo}}
vibrate, actions {{CompatChrome(53.0)}} {{CompatUnknown}}     {{CompatOpera(39)}}  
badge {{CompatChrome(53.0)}} {{CompatUnknown}}     {{CompatOpera(39)}}  
image {{CompatChrome(55.0)}} {{CompatUnknown}}     {{CompatUnknown}}  
Feature Android Android Webview Edge Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile Chrome for Android
Basic support {{CompatUnknown}}

{{CompatVersionUnknown}}

{{CompatVersionUnknown}} 4.0{{property_prefix("moz")}}[2]
22
1.0.1{{property_prefix("moz")}}[2]
1.2
{{CompatNo}} {{CompatUnknown}} {{CompatNo}}

{{CompatVersionUnknown}}

icon {{CompatUnknown}} {{CompatVersionUnknown}} {{CompatUnknown}} 4.0{{property_prefix("moz")}}[2]
22
1.0.1{{property_prefix("moz")}}[2]
1.2
{{CompatNo}} {{CompatUnknown}} {{CompatNo}} {{CompatVersionUnknown}}
Available in workers {{CompatUnknown}} {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatGeckoMobile("41.0")}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatVersionUnknown}}
silent {{CompatNo}} {{CompatChrome(43.0)}} {{CompatUnknown}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatChrome(43.0)}}
noscreen, sticky {{CompatNo}} {{CompatNo}} {{CompatUnknown}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}}
sound {{CompatNo}} {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatVersionUnknown}}
renotify {{CompatNo}} {{CompatChrome(50.0)}} {{CompatUnknown}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}}
Promise-based Notification.requestPermission() {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatGeckoMobile("47.0")}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
vibrate, actions {{CompatNo}} {{CompatChrome(53.0)}} {{CompatUnknown}}       {{CompatOperaMobile(39)}}   {{CompatChrome(53.0)}}
badge {{CompatNo}} {{CompatChrome(53.0)}} {{CompatUnknown}}       {{CompatOperaMobile(39)}}   {{CompatChrome(53.0)}}
image {{CompatNo}} {{CompatNo}} {{CompatUnknown}}       {{CompatUnknown}}   {{CompatChrome(55.0)}}

[1] Before Chrome 22, the support for notification followed an old prefixed version of the specification and used the {{domxref("window.navigator.webkitNotifications","navigator.webkitNotifications")}} object to instantiate a new notification.

Before Chrome 32, {{domxref("Notification.permission")}} was not supported.

Before Chrome 42, service worker additions were not supported.

Starting in Chrome 49, notifications do not work in incognito mode.

[2] Prior to Firefox 22 (Firefox OS <1.2), the instantiation of a new notification must be done with the {{domxref("window.navigator.mozNotification", "navigator.mozNotification")}} object through its createNotification method.

Prior to Firefox 22 (Firefox OS <1.2), the Notification was displayed when calling the show method and supported only the click and close events.

Nick Desaulniers wrote a Notification shim to cover both newer and older implementations.

One particular Firefox OS issue is that you can pass a path to an icon to use in the notification, but if the app is packaged you cannot use a relative path like /my_icon.png. You also can't use window.location.origin + "/my_icon.png" because window.location.origin is null in packaged apps. The manifest origin field fixes this, but it is only available in Firefox OS 1.1+. A potential solution for supporting Firefox OS <1.1 is to pass an absolute URL to an externally hosted version of the icon. This is less than ideal as the notification is displayed immediately without the icon, then the icon is fetched, but it works on all versions of Firefox OS.

When using notifications  in a Firefox OS app, be sure to add the desktop-notification permission in your manifest file. Notifications can be used at any permission level, hosted or above: "permissions": { "desktop-notification": {} }

[3] Safari started to support notification with Safari 6, but only on Mac OSX 10.8+ (Mountain Lion).

See also