I have something like this:
<embed id="wavfile" src='wavfile.wav' hidden="true" autostart="false" loop="false" height="0" width="0">
I don't want it to start immediately, I want it to start on some button click, so on button click I tried changing autostart parameter to true but nothing happens, still not starting.
$('#wavfile').attr("autostart","true");
Any ideas how to trigger it?
Thanks