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.

FMRadio.disable()

This API is available on Firefox or Firefox OS for installed or higher privileged applications.

Summary

The disable method is used to turn off the radio.

Each time this method is called successfully, the disabled event is fired.

Syntax

var request = instanceOfFMRadio.disable();

Returns

It returns a DOMRequest to handle the success or error of the operation.

Example

var request = navigator.mozFMRadio.disable(100.0);
 
request.onsuccess = function () {
  console.log("The radio is turned off");
}

request.onerror = function () {
  console.log("Something goes wrong!");
}

Specification

Not part of any specification.

See also

Document Tags and Contributors

 Contributors to this page: chrisdavidmills, teoli, kscarfone, Jeremie
 Last updated by: chrisdavidmills,