myURL = ("http://mysite.com/admin/recordings.php?recording_id=") + input.recID2; // I use this to pass recording ID in
input.link = myURL; // If I post this into a single box it adds the correct URL
myURL2 = "data:text/html,<audio src=" + myURL + "controls>" + myURL; // Trying to add audio controls here
input.Url = "<a " + myURL2 + "</a>";