jquery - Change mp3 src attribute works in Firefox, but not in Chrome -


i want switch src attribute of embedded mp3.

  <embed id="aplayer" width="10" height="10" src="audio/gong.mp3">  

js

$("#btnplay").click(function() {     if (mm==0) {     $('#aplayer').attr('src', 'audio/01.mp3');     mm = 1;     }     else {     $('#aplayer').attr('src', 'audio/gong.mp3');     mm = 0; } 

works in firefox (the new file plays), not in chrome.

is there way solve in chrome ?


Comments

Popular posts from this blog

mod rewrite - Using "?" when rewriting the URL -

.htaccess: Transfer name to index.php if not directory public -

Admob integration with pygame in android -