Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Mar 21st, 2012  |  syntax: jQuery  |  size: 0.32 KB  |  hits: 43  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. $(".play").delegate(this,'click', function(){
  2.         var value = $(this).attr("value")
  3.         $("#playing-icon").remove();
  4.         $("td."+value).append("<img id='playing-icon' src='style/control_play.png' align='top' style='position:absolute; left:3px; top:3px;'>");
  5.         $("#song").attr("src", "music/"+value+".mp3");
  6.         $('#player').load();
  7. });