MozMobileConnection.selectNetworkAutomatically()
This API is available on Firefox OS for internal applications only.
Summary
The selectNetworkAutomatically
method is used to tell the radio to automatically select a network.
Note: If the network is actually changed by this request, the voicechange
and datachange
events are fired.
Syntax
JavaScript
Copy Code
var request = navigator.mozMobileConnection.selectNetworks();
Return
A DOMRequest
object to handle the success or failure of the method call.
If the request fails, the request's error
is one of:
RadioNotAvailable
RequestNotSupported
IllegalSIMorME
GenericFailure
Example
JavaScript
Copy Code
var switchNetwork = navigator.mozMobileConnection.selectNetworkAutomatically(); switchNetwork.onsuccess = function () { console.log('Successful switch'); } switchNetwork.onerror = function () { console.log('Unable to switch: ' + this.error.name); }
Specification
Not part of any specification.
See also
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/mozmobileconnection/selectnetworkautomatically