Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My Problem: I would like a user to hear a sound of some sort if a number is over 100.

If (x > 100) { play sound }

How would I go about this using html5/javascript. Is it possible to play sound without having an inline little video clip. The only stuff I've seen thus far has those little quicktime players embedded within the page: http://www.w3schools.com/html/html_sounds.asp

Hopefully there's a better solution? Thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

Use an <audio> element.

var foo = document.createElement('audio');
foo.src = 'https://dl.dropbox.com/u/8090976/Matrix%20Ring.aiff';

if (x > 100)
{
    document.getElementById('foo').play();
}

Demo: http://jsfiddle.net/mattball/ZcRt9/

More reading: http://html5doctor.com/native-audio-in-the-browser

share|improve this answer
so this will not create any inline clip, but will actually just allow me to play an audio snippet? – A user Oct 2 '12 at 23:43
Edited to use document.createElement() instead of an existing one in the page. N.B. you do not need to create a new element every time you want to play a sound; you can re-use the same one. – Matt Ball Oct 2 '12 at 23:47
great! so if I have the sound clip hosted on my server somewhere, I can just link to it using the whole URL?? – A user Oct 2 '12 at 23:52
Yes............ – Matt Ball Oct 2 '12 at 23:53
jsfiddle doesnt seem to be working for me. It is not producing any sound on either Chrome or Firefox – A user Oct 2 '12 at 23:54
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.