canmove, Confirmed users
725
edits
Line 138: | Line 138: | ||
== Sending an MMS == | == Sending an MMS == | ||
<html> | |||
<body> | |||
<input type="file" id="picture" accept="image/*"> | |||
<div> | |||
<input type="text" id="number"> | |||
<button onclick="sendMMS()">Send</button> | |||
</div> | |||
<script> | |||
function sendMMS() { | function sendMMS() { | ||
var smil = "<smil><body><par><video src="lolcat.mov"/></par></body></smil>"; | var smil = "<smil><body><par><video src="lolcat.mov"/></par></body></smil>"; | ||
Line 167: | Line 158: | ||
navigator.mms.send(message); | navigator.mms.send(message); | ||
} | } | ||
</script> | |||
</body> | |||
</html> |