... |
... |
@@ -19,10 +19,17 @@ |
19 |
19 |
|
20 |
20 |
<br><br> |
21 |
21 |
|
22 |
|
- |
23 |
|
-<audio controls> |
24 |
|
- <source src="/bin/download/Sandbox/TestPage2/Anti-Black%20racial%20slur%20was%20found%20written%20on%20high%20school%20desk%20in%20Rockville.mp3" type="audio/mpeg"> |
|
22 |
+<audio id="player" controls style="width: 100%;"> |
|
23 |
+ <source src="" type="audio/mpeg"> |
25 |
25 |
Your browser does not support the audio element. |
26 |
26 |
</audio> |
|
26 |
+ |
|
27 |
+<script> |
|
28 |
+function changeTrack(src) { |
|
29 |
+ var player = document.getElementById('player'); |
|
30 |
+ player.src = src; |
|
31 |
+ player.play(); |
|
32 |
+} |
|
33 |
+</script> |
27 |
27 |
{{/html}} |
28 |
28 |
|