Sunday, May 19, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  9] [ 5]  / answers: 1 / hits: 15634  / 13 Years ago, fri, october 7, 2011, 12:00:00

I have a couple of audio elements that appear in the body of my page. They look like this.



      <audio id=sound1 preload=auto>
<source id=sound1source src=../../Content/Audio/gau.mp3>
//add .ogg here later
</audio>
<audio id=sound2 preload=auto>
<source id=sound2source src=../../Content/Audio/mah.mp3>
//add .ogg here later
</audio>


The audio plays when a user mouses over certain divs. Here's the code that triggers it.



var audio = $(#sound1)[0];
$(#ChoiceA).mouseenter(function () {
audio.play();
});
var audio2 = $(#sound2)[0];
$(#ChoiceB).mouseenter(function () {
audio2.play();
});


Everything above works fine. My problem occurs when I attempt to dynamically change the source element after making an ajax call. Here's my javascript that accomplishes that.



var src1 = ../../Content/Audio/ + data.nouns[0].Audio1 + .mp3;
var src2 = ../../Content/Audio/ + data.nouns[1].Audio1 + .mp3;

$(#sound1source).attr(src, src1);
$(#sound2source).attr(src, src2);


When I inspect the page after triggering the ajax call to change the source path for the audio elements, I see that the source is updated. No problem there. The problem is that the audio that the new paths point to does not play.



After hunting around I found this note on w3.org Dynamically modifying a source element and its attribute when the element is already inserted in a video or audio element will have no effect. To change what is playing, either just use the src attribute on the media element directly, or call the load() method on the media element after manipulating the source elements.



The comment on w3.org seems to be related so I tried calling $('#sound1').load() and also $('#sound1source').load(). Neither solved my problem.



Can someone tell me what I've done wrong? If I need to cause the audio element to load again after dynamically changing the src, how do I do that?



-------------UPDATE-------------



Based on Swatkins suggestion I created the following function to create the audio tag when the user mouses over the target div. Unfortunately this has not solved the problem either.



    function attachAudio1(src) {

$('#audio1').remove();
var audio = $('<audio>');
audio.attr(src, src);
audio.attr(id, audio1);
audio.appendTo('body');
attachPlayAction();
};

function attachPlayAction() {
var audio = $(#audio1)[0];
$('#ChoiceA').live('mouseenter', function () {
audio.play();
});


};

More From » jquery

 Answers
12

You should call load like this:



var audio = $(#sound1)[0];
$(#ChoiceA).mouseenter(function () {
audio.load();
audio.play();
});
var audio2 = $(#sound2)[0];
$(#ChoiceB).mouseenter(function () {
audio.load();
audio2.play();
});


Have not tested doing it like above, but have testet this previously with a seperate function looking something like this:



<audio id=sound1 preload=auto src=../../Content/Audio/gau.mp3>

function changeAudio(){
audio = document.getElementById(sound1);
audio.src = ../../Content/Audio/ + data.nouns[0].Audio1 + .mp3;
audio.load();
audio.play();
}

$(#ChoiceA).mouseenter(function () {
changeAudio();
});


and that worked fine for me?






EDIT: Adding a fiddle, maybe that will help you figure this out?



http://jsfiddle.net/Z3VrV/


[#89735] Thursday, October 6, 2011, 13 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
domeniccolti

Total Points: 276
Total Questions: 98
Total Answers: 93

Location: India
Member since Fri, May 13, 2022
2 Years ago
domeniccolti questions
Mon, Oct 18, 21, 00:00, 3 Years ago
Thu, Oct 14, 21, 00:00, 3 Years ago
Thu, Jul 15, 21, 00:00, 3 Years ago
Sat, Oct 24, 20, 00:00, 4 Years ago
Thu, Sep 3, 20, 00:00, 4 Years ago
;