ho provato nel modo più classico...
codice:
$("#audio").remove();
var audio = document.createElement("audio");
var source_1=document.createElement("source");
var source_2=document.createElement("source");
var player=document.getElementById("player");
audio.setAttribute("id", "audio");
audio.setAttribute("controls");
source_1.setAttribute("src", audio_corrente_ogg);
source_2.setAttribute("src", audio_corrente_mp3);
source_1.setAttribute("type", "audio/ogg");
source_2.setAttribute("type", "audio/mp3");
player.appendChild(audio);
audio.appendChild(source_2);
audio.appendChild(source_1);
e finalmente funziona!!! Grazie a tutti!!