';
tagsToWrite['audio'] = '';
tagsToWrite['embed'] = '';
var tagKey = 'audio';
if (contentType === 'ogg') {
if (browser.msie || browser.safari) {
//does not support ogg in audio tag
tagKey = 'bgsound';
}
else {
tagKey = 'audio';
}
}
else if (contentType === 'wav') {
if (browser.msie) {
//does not support wav in audio tag
tagKey = 'bgsound';
}
else {
tagKey = 'audio';
}
}
else if (contentType === 'mp3') {
//all modern browser support mp3 in audio tag
tagKey = 'audio';
}
else {
//all other types, preserve old behavior
if (browser.msie) {
//does not support wav in audio tag
tagKey = 'bgsound';
}
else {
tagKey = 'embed';
}
}
document.write(tagsToWrite[tagKey]);
Este sitio web fue creado de forma gratuita con PaginaWebGratis.es. ¿Quieres también tu sitio web propio?
Registrarse gratis