I have seen different examples of
elemento.currentTime
But I have not seen any with an element created from javascript to which it is applied and the following code does not work.
var time;
var audioe = document.createElement("audio");
audioe.src="http://soundbible.com/mp3/Tiger Growling-SoundBible.com-258880045.mp3";
audioe.onloadeddata = function() {
audioe.currentTime = 2;
audioe.play();
};
Someone sees the problem: /?