i'm looking for a way to play different audio file from different javascript button. probably something wrong in my javascript.. help me please!
<!--button 1___________________________________________________________________-->
<input name="button_play_1" type="button" id="button_play_1" onclick="toggle(this);" value="PARTE A | ascolta" />
<!--script 1___________________________________________________________________-->
<script type="text/javascript">
function toggle(button)
{
if(document.getElementById("button_play_1").value=="PARTE A | ►"){
document.getElementById("button_play_1").value="PARTE A | ascolta";
document.getElementById('audio_element_1').pause();
}
else if(document.getElementById("button_play_1").value=="PARTE A | ascolta"){
document.getElementById("button_play_1").value="PARTE A | ►";
document.getElementById('audio_element_1').play();
}
}
</script>
<!--audio element 1______________________________________________-->
<audio id="audio_element_1" src="http://silvermusicradio.it/mp3/Progressive_Line_01a.mp3" ></audio>
<!--button 2___________________________________________________________________-->
<input name="button_play_2" type="button" id="button_play_2" onclick="toggle(this);" value="PARTE B | ascolta"/>
<!--script 2___________________________________________________________________-->
<script type="text/javascript">
function toggle(button)
{
if(document.getElementById("button_play_2").value=="PARTE B | ►"){
document.getElementById("button_play_2").value="PARTE B | ascolta";
document.getElementById('audio_element_2').pause();
}
else if(document.getElementById("button_play_2").value=="PARTE B | ascolta"){
document.getElementById("button_play_2").value="PARTE B | ►";
document.getElementById('audio_element_2').play();
}
}
</script>
<!--audio element 2______________________________________________-->
<audio id="audio_element_2" src="http://silvermusicradio.it/mp3/Progressive_Line_01b.mp3" ></audio>
I wish that when i click on PARTE A | ascolta button i listen the audio A, and viceversa with the audio B. Actually, the code, let me listen only ones audio and the other button work on this same audio file, so the other audio leave out
thanks