Autoplay audio HTML jQuery

I am creating a HTML5 music website for mobile users.The goal is to get it running completely in mobile browsers..

The issue is that when a user selects a track to play, they are taken to the "player" page.I then AJAX in a HTML5 audio element in with the autoplay attribute set to true. This works great on desktops, not so much on mobile.

The track is not playing though once this page is reached, and the user instead needs to explicitly click play from this player page in order for audio playback to start. Any ideas on how I can adjust my flow in order for audio playback to autoplay after loading the playing page?

Here's my HTML code:

Mobile Websites
back
Player
Suffle
sdfsdfsdfdsf

initaudioplayer.js :

jQuery(document).ready(function(){ var jsFolder = "images"; jQuery("#amazingaudioplayer-7").amazingaudioplayer({ jsfolder:jsFolder, volumeimagewidth:24, barbackgroundimage:"", imagewidth:100+'%', showtime:true, titleinbarwidth:80, showprogress:true, random:false, titleformat:"%TITLE%", height:164, prevnextimage:"prevnext-48-48-0.png", showinfo:true, imageheight:100+'%', skin:"MusicBox", loopimage:"repeat-img.png", loopimagewidth:33, volumebarheight:80, prevnextimageheight:40, infoformat:"By %ARTIST% %ALBUM%
%INFO%", showstop:false, showvolumebar:true, width:320, showtitleinbar:false, showloop:true, volumeimage:"volume-24-24-1.png", playpauseimagewidth:75, loopimageheight:36, tracklistitemformat:"%ORDER%. %TITLE% %DURATION%", prevnextimagewidth:40, tracklistarrowimage:"tracklistarrow-16-16-0.png", playpauseimageheight:75, showbackgroundimage:false, progresswidthmode:"fixed", stopimage:"stop-48-48-0.png", showvolume:true, playpauseimage:"playpause-48-48-0.png", showprevnext:true, backgroundimage:"", volumebarpadding:8, progressheight:8, showtracklistbackgroundimage:false, progresswidth:296, showtitle:true, tracklistarrowimageheight:16, heightmode:"fixed", titleinbarformat:"%TITLE%", showtracklist:true, stopimageheight:48, volumeimageheight:24, stopimagewidth:48, tracklistbackgroundimage:"", showbarbackgroundimage:false, showimage:true, tracklistwidth:320, tracklistarrowimagewidth:16, timeformat:"%CURRENT% / %DURATION%", autoplay:true, loop:1, tracklistitem:10 }); });