hello i am about to load and play a sound with html5 and jquery. i have three problems:
1) i want to monitor the loading. i.e. when the loading is finished, i want to call something.
var sound = new Audio("bla.mp3");
$(sound).load( function ()
{
loadingDone(); // not being called ;(
});
2) i want to replay the sound multiple times
sound.play(); // only plays the sound the first time it is called.
3) this doesnt seem to work in safari at all: "TypeError: Result of expression 'Audio' [undefined] is not a constructor."
thanks for any help on this!