Skip to content

Instantly share code, notes, and snippets.

@robnyman
Created March 1, 2012 17:41
Show Gist options
  • Save robnyman/1951609 to your computer and use it in GitHub Desktop.
Save robnyman/1951609 to your computer and use it in GitHub Desktop.
WebSMS API
// SMS object
var sms = navigator.mozSMS;
// Send a message
sms.send("123456789", "Hello world!");
// Recieve a message
sms.onrecieved = function (event) {
// Read message
console.log(event.message);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment