Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

MozSettingsEvent

This API is available on Firefox OS for internal applications only.

Summary

The MozSettingsEvent represents a settingchange event, providing information about a change to the value of a setting on the device. It extends the DOM Event interface.

Properties

MozSettingsEvent.settingName
A string indicating the exact name of the changed setting.
MozSettingsEvent.settingValue
The setting's new value.

Example

This example listens for changes to settings, reporting their names and new values on the console.

// Listen to changes on any settings
navigator.mozSettings.onsettingchange = function (event) {
  console.log(event.settingName + ": " + event.settingValue);
};

Specification

Not part of any specification yet; however, this API will be discussed at W3C as part of the System Applications Working Group.

See also

Document Tags and Contributors

 Contributors to this page: chrisdavidmills, fscholz, MHasan, Sheppy, Jeremie
 Last updated by: chrisdavidmills,