La situación es la siguiente:
Tengo una hoja de estilos ya creada en una web (tengo la dirección) pero no se como cargarla en una web hecha con javascript
tengo el siguiente código en javascript
Código Javascript:
Ver original
function inicializarMenuVertical(defMenu,divMenu,prefijoEstilo) { document.getElementById(divMenu).appendChild(crearMenuVertical(defMenu)); document.getElementById('theSubmitButton').click(); document.getElementById(defMenu,divMenu).className = prefijoEstilo; }
Y el siguiente codigo en html
Código HTML:
Ver original
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <link href="hojaEstilo.css" rel="stylesheet" type="text/css" id="estilo"> <body onLoad="inicializarMenuVertical(definicionMenuSI,'miMenuSI','estilo');"> </head> </body> </html>
Y no me sale el estilo cargado alguien sabe como hacerlo??