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.

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

The dial() method of the Telephony interface dials a phone number and returns a new TelephonyCall object representing the new call.

Syntax

The new syntax is promise-based, and resolves with the TelephonyCall object for the new call:

myTelephony.dial(number or MMICode,serviceId).then(function(myCall) {
  // do something with the new telephone or MMI call
});

The original syntax (Firefox 1.3 and below) was just a regular non-promise method.

var myTelephonyCall = myTelephony.dial(number or MMICode,serviceId);

Parameters

number
A string indicating the phone number to dial.
MMI code
A string indicating the MMI code to dial (e.g. *123#).
serviceId Optional
The id of the mobile service you want to use to make the call. If not specified, the default value for the device is used.

Returns

A promise that resolves with a TelephonyCall or MMICall object.

Examples

// Telephony object
var tel = navigator.mozTelephony;

// Place a call
tel.dial("123456789").then(function(call) {
  call.id;
});

Specifications

Specification Status Comment
Web Telephony Draft Draft

Browser compatibility

For obvious reasons, support is primarily expected on mobile browsers.

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support No support No support No support No support No support
Feature Android Firefox Mobile (Gecko) Firefox OS (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support No support 12.0 (12.0) 1.0.1 No support No support No support
Promise version No support 30.0 (30.0) 1.4 No support No support No support

See also

Document Tags and Contributors

 Last updated by: chrisdavidmills,