jQuery audio reproducir en el botón Haga clic
$('.btn').click(function() {
var audio = new Audio("sounds/" + $(this).attr('id') + ".mp3");
audio.play();
});
Filthy Reach