Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I do that, so whenever a user clicks a link we play a sound? Using javascript and jquery here.

share|improve this question

9 Answers

Found something like that:

//javascript:
function playSound( url ){   
  document.getElementById("sound").innerHTML="<embed src='"+url+"' hidden=true autostart=true loop=false>";
}
share|improve this answer
3  
This is to slow. It take nearly a second to play with windows browsers – Codeglot Dec 22 '10 at 23:42
@Codeglot that depends on the application. 1 Second would meet my requirements. – Muhd Dec 16 '11 at 20:59
Also, you could probably preload it somehow to get rid of the delay. – Muhd Dec 16 '11 at 23:08
4  
The delay comes from the DOM parsing, then loading the file, and starting it. If you preload it, then you can just start it when needed. – Xeoncross Mar 12 '12 at 19:47
Here's a proof-of-concept demo of this: jsbin.com/ilijif/2 – Anderson Green Feb 23 at 5:01

https://github.com/admsev/jquery-play-sound

$.playSound('http://example.org/sound.mp3');

share|improve this answer
Great, thank you! :) – RushPL Dec 7 '12 at 23:49

JavaScript Sound Manager:

http://www.schillmania.com/projects/soundmanager2/

share|improve this answer
$('a').click(function(){
    $('embed').remove();
    $('body').append('<embed src="/path/to/your/sound.wav" autostart="true" hidden="true" loop="false">');
});
share|improve this answer
Why does doing this method make the scroll bars blue in Chrome? – stumpx Nov 7 '11 at 22:31
It happens to me.. blue scroll bars in Chrome! – cad Nov 14 '11 at 21:05
Open this link it will solve both problem the scrol bar and also play sound stackoverflow.com/questions/15483455/… – Azam Alvi Mar 19 at 13:12

New emerger... seems to be compatible with IE, Gecko browsers and iPhone so far...

http://www.jplayer.org/

share|improve this answer

First things first, i'd not like that as a user.

The best way to do is probably using a small flash applet that plays your sound in the background.

Also answered here: http://stackoverflow.com/questions/187098/cross-platform-cross-browser-way-to-play-sound-from-javascript

share|improve this answer
2  
What's so bad about it if the user knows a sound would be played? – lc. Jan 16 '09 at 10:48
3  
It is useful, what about if a user need an beep alert, when new orders arrive? perhaps users are not with eyes on screen the whole time, perhaps I need a pee and turn on the BEEP, then someone else can answer the order.. just few examples.. – B4NZ41 Apr 28 '12 at 3:37

I wrote a small function that can do it, with the Web Audio API...

var beep = function(duration, type, finishedCallback) {

    if (!(window.audioContext || window.webkitAudioContext)) {
        throw Error("Your browser does not support Audio Context.");
    }

    duration = +duration;

    // Only 0-4 are valid types.
    type = (type % 5) || 0;

    if (typeof finishedCallback != "function") {
        finishedCallback = function() {};   
    }

    var ctx = new (window.audioContext || window.webkitAudioContext);
    var osc = ctx.createOscillator();

    osc.type = type;

    osc.connect(ctx.destination);
    osc.noteOn(0);

    setTimeout(function() {
        osc.noteOff(0);
        finishedCallback();
    }, duration);

};
share|improve this answer
Works great on Chrome. Does not work on Firefox (yet). – Erel Segal Halevi Feb 13 at 12:07

Following code might help you to play sound in a web page using javascript only. You can see further details at http://sourcecodemania.com/playing-sound-javascript-flash-player/

<script>
function getPlayer(pid) {
    var obj = document.getElementById(pid);
    if (obj.doPlay) return obj;
    for(i=0; i<obj.childNodes.length; i++) {
        var child = obj.childNodes[i];
        if (child.tagName == "EMBED") return child;
    }
}
function doPlay(fname) {
    var player=getPlayer("audio1");
    player.play(fname);
}
function doStop() {
    var player=getPlayer("audio1");
    player.doStop();
}
</script>

<form>
<input type="button" value="Play Sound" onClick="doPlay('texi.wav')">
<a href="#" onClick="doPlay('texi.wav')">[Play]</a>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
    width="40"
    height="40"
    id="audio1"
    align="middle">
    <embed src="wavplayer.swf?h=20&w=20"
        bgcolor="#ffffff"
        width="40"
        height="40"
        allowScriptAccess="always"
        type="application/x-shockwave-flash"
        pluginspage="http://www.macromedia.com/go/getflashplayer"
    />
</object>

<input type="button" value="Stop Sound" onClick="doStop()">
</form>
share|improve this answer

For a browser-backwards-compatible answer.. check this posting:

http://www.misfitgeek.com/2011/08/play-sound-in-html5-and-cross-browser-support-with-backward-compatability/

share|improve this answer

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.