I\'m using this code to play a preloaded mp3 file.
var shuffle = $(\"#shuffle\")[0]; shuffle.play();
Shuffle is my id. I got the code o
JQuery returns an array. [0] takes the first item in the array.