Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/10/2011, 15:08
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 16 años, 6 meses
Puntos: 1012
Respuesta: Como cargar Script en Div desde una funcion?

prueba ahora
Cita:
function SistemaOperativo() {
if (navigator.userAgent.indexOf("NT 5.1") !=-1) {var SO= "Windows XP"}
else if (navigator.userAgent.indexOf("NT 6.1") !=-1) {var SO= "Windows 7"}
else if (navigator.userAgent.indexOf("NT 6") !=-1) {var SO= "Windows Vista"}
else {var SO= "No identificado"}
return SO;}

window.onload = function() {var SO= SistemaOperativo();

if (SO=="Windows XP")
{
document.getElementById('bloque').innerHTML = 'window xp';
}
else if (SO=="Windows Vista")
{
document.getElementById('bloque').innerHTML = 'window vista';
}
else if (SO=="Windows 7")
{
document.getElementById('bloque').innerHTML = 'window 7';
}
else
{
document.write("ERROR: Sistema Operativo No identificado");
}
};
también te puede interesar leer sobre include con javascript o service side include