1
0
mirror of https://github.com/balkian/go5ears.git synced 2025-09-02 17:12:19 +00:00

First commit

This commit is contained in:
J.Fernando Sánchez
2012-10-04 22:34:45 +02:00
parent f0e8406506
commit 158733d7e0
4 changed files with 114 additions and 1 deletions

15
public/index.html Normal file
View File

@@ -0,0 +1,15 @@
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script>
function playSelected(id){
$("audio").attr("src","play?id="+id);
}
</script>
</head>
<body>
<p onClick='playSelected("fe7e4f9")'>Libertine</p>
<p onClick='playSelected("4b9ed95")'>We are the champions</p>
<audio src="play?id=a78950d" controls="controls"></audio>
</body>
</html>