This article needs a technical review. How you can help.
This API is available on Firefox OS for internal applications only.
Summary
The DOM MozSmsEvent represents events related to WebSMS text messages.
Properties
MozSmsEvent.messageRead only- An
MozSmsMessagefrom which the event originated.
MozSmsEvent also inherite properties from Event
Event()- Creates an
Eventobject.
Properties
This interface doesn't inherit any property.
Event.bubblesRead only- A boolean indicating whether the event bubbles up through the DOM or not.
Event.cancelableRead only- A boolean indicating whether the event is cancelable.
Event.currentTargetRead only- A reference to the currently registered target for the event.
Event.defaultPreventedRead only- Indicates whether or not
event.preventDefault()has been called on the event. Event.eventPhaseRead only- Indicates which phase of the event flow is being processed.
Event.explicitOriginalTargetRead only- The explicit original target of the event (Mozilla-specific).
Event.originalTargetRead only- The original target of the event, before any retargetings (Mozilla-specific).
Event.srcElement- A nonstandard alias for
Event.target. (old Internet Explorer-specific) Event.targetRead only- A reference to the target to which the event was originally dispatched.
Event.timeStampRead only- The time that the event was created.
Event.typeRead only- The name of the event (case-insensitive).
Event.isTrustedRead only- Indicates whether or not the event was initiated by the browser (after a user click for instance) or by a script (using an event creation method, like event.initEvent)
Methods
MozSmsEvent inherite methods from Event
This interface doesn't inherit any method.
Event.initEvent()- Initializes the value of an Event created. If the event has already being dispatched, this method does nothing.
Event.preventBubble()Obsolete since Gecko 24- Prevents the event from bubbling. Obsolete, use
event.stopPropagationinstead. Event.preventCapture()Obsolete since Gecko 24- Obsolete, use
event.stopPropagationinstead. Event.preventDefault()- Cancels the event (if it is cancelable).
Event.stopImmediatePropagation()- For this particular event, no other listener will be called. Neither those attached on the same element, nor those attached on elements which will be traversed later (in capture phase, for instance)
Event.stopPropagation()- Stops the propagation of events further along in the DOM.
Event.getPreventDefault()- ?
Events
The MozSmsEvent is used for the following events:
deliverysuccess- Fired whenever an SMS is delivered to a recipient.
received- Fired whenever an SMS is received.
sent- Fired whenever an SMS is sent.
Specifications
This is a non standard implementation, but it is discussed at W3C as part of the System Application Working Group.
| Specification | Status | Comment |
|---|---|---|
| Messaging API | Editor's Draft | Editor Draft (WIP). |
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) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|
| Basic support | No support | 12.0 (12.0) Moz | No support | No support | No support |