1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| $("span[data-src-mp3]").click(function () { var player = document.getElementById("player"), $this = $(this);
if ($this.hasClass("selected")) { if (player.paused) { player.play(); } else { player.pause(); } } else { $("span[data-src-mp3].selected").removeClass("selected"); $this.addClass("selected"); $(player) .empty() .append($("<source>").attr("src", $this.attr("data-src-mp3"))) .append($("<source>").attr("src", $this.attr("data-src-ogg"))) player.load(); player.play(); } });
|