1
0
Fork 0
oldhaven/public/javascripts/player.js

8 lines
284 B
JavaScript
Raw Normal View History

2011-04-08 18:39:49 +00:00
$(function(){
$('.play').click(function(){
2011-04-10 03:17:34 +00:00
$('#player audio').attr('src', '/listen/'+ $(this).parent().attr('id')) +'/';
$('#player #artist').html($('h1.artist').html());
$('#player #title').html($(this).parent().find('.track-name').html());
$('#player audio').play();
2011-04-08 18:39:49 +00:00
})
})