It it working partially, but how do I get the below to work with multiple audio files:

    <!DOCTYPE HTML>
    <html>
    <body>

    <script language="javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>

    <script type="text/javascript">
    $(function(){
        var birdhover     = $('.birds');
            var birdaudio = birdhover.find('audio')[0];

        birdhover.hover(function(){
           birdaudio.play();
        }, function(){
           birdaudio.stop();
        });
    });
    </script>

    <div class="birds" style="width:30px;height:30px;background-image:url(image1.gif');cursor:pointer;">
       <audio src="sound1.ogg" preload="auto"></audio>
    </div> 

    <div class="birds" style="width:30px;height:30px;background-image:url('/home/imran/Desktop/images/vowel_short_2.gif');cursor:pointer;">
(image2.gif');cursor:pointer;">
       <audio src="sound2.ogg" preload="auto"></audio>
    </div> 

    </body>
    </html>

Both images play the same sound.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

if you don't mind using HTML5:

HTML

<div class="birds">
   <audio src="/sounds/bird.mp3" preload="auto"></audio>
</div> 

Javascript

$(function(){
    var birdhover     = $('.birds');
        var birdaudio = birdhover.find('audio')[0];

    birdhover.hover(function(){
       birdaudio.play();
    }, function(){
       birdaudio.stop();
    });
});

http://www.w3schools.com/html5/tag_audio.asp

link|improve this answer
3  
+1 for HTML5 ... – Marko Jul 27 '10 at 11:00
I just tried this and it just produces a blank screen? Am I supposed to place an image between the audio tags? – oshirowanen Jul 27 '10 at 12:13
I am using chromium 5.x. – oshirowanen Jul 27 '10 at 12:16
I have updated the original question to show you what I currently have. – oshirowanen Jul 27 '10 at 12:22
Hi, got it to work, didn't realise you were using jquery. I have uploaded the original question, as I do not understand how to do the same thing with multiple audio files. – oshirowanen Jul 27 '10 at 12:31
show 4 more comments
feedback

updated for multiple sound files
This is what I used before: http://plugins.jquery.com/project/sound

Usage:

$("#sound").sound({swf: url});
$("#sound").load(url);
$("#sound").play();
$("#sound").pause();
$("#sound").stop();
$("#sound").volume(0-100);

(taken from jQuery plugins page)

for mouseover:

$('#selector').mouseover(function() {
   $("#sound").play('path/to/wav/or/mp3');
});

$('#second-selector').mouseover(function() {
   $("#sound2").play('path/to/second/wav/or/mp3');
});
link|improve this answer
I am attempting to use this plugin yet I cannot get it to work, I posted my question here: stackoverflow.com/questions/7942760/jquery-sound can you help me at all? – Lynda Oct 30 '11 at 2:19
feedback

Your Answer

 
or
required, but never shown

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