<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1"/>
<link rel="stylesheet" type="text/css" href="css/jquery.mobile.flatui.css" />
<script src="js/jquery.js"></script>
<script src="js/jquery.mobile-1.4.2.js"></script>
<script src="js/ion.sound.js"></script>
<script>
$(document).ready(function(){
$.ionSound({
sounds: [
"beer_can_opening",
"bell_ring",
"branch_break",
"water_droplet"
],
path: "audio/",
multiPlay: true,
volume: "1.0"
});
$("#b01").on("click", function(){
$.ionSound.play("beer_can_opening");
});
$("#b02").on("click", function(){
$.ionSound.play("bell_ring");
});
});
</script>
</head>
<body>
<div data-role="header" data-position="fixed" data-theme="f">
<a href="index.html" data-role="button" data-icon="back" data-iconpos="notext" data-transition="slide" data-rel="back" data-ajax="true">Home</a>
<h5>xxxxx xxx</h5>
<a data-iconpos="notext" href="#panel" data-role="button" data-icon="flat-menu"></a>
</div>
<div data-role="content">
<div data-role="collapsible" data-theme="f" data-collapsed="false">
<h4>Sonido</h4>
<button id="b01">Play "beer_can_opening"</button>
<button id="b02">Play "bell_ring"</button>
</div>
</div>
</div>
</body>
</html>
Gracias de antemano. Saludos.