Necesito modificar / crear un CSS de forma dinamica (ya que no tengo PHP y por tanto) debo hacerlo en JS.
Lo que quiero es poner un fondo de foma condicional: solo cuando estoy en la home page. / como no se cual es la HOME en JS entonces miro la longitud de la url y la comparo con la esperada (que vale 33)
Cita:
El problema es que eso no hace NADA #newsidebar-wrapper {
no-repeat center;
margin-left: 4px;
width:520px;
height: 288px;
float: left;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}
<script language="javascript">
var callingURL = document.URL;
if (callingURL.length<=33){
document.newsidebar-wrapper.style.backgroundurl = 'http://i201.photobucket.com/albums/aa270/pbozzolo/Beta%20DIR/gave-martin.jpg';
}
</script>
no-repeat center;
margin-left: 4px;
width:520px;
height: 288px;
float: left;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}
<script language="javascript">
var callingURL = document.URL;
if (callingURL.length<=33){
document.newsidebar-wrapper.style.backgroundurl = 'http://i201.photobucket.com/albums/aa270/pbozzolo/Beta%20DIR/gave-martin.jpg';
}
</script>
Ideas ?
Puede ser que document.newsidebar-wrapper.style.backgroundurl no este bien ?
Tambien he probado esta variacion SIN resultados:
Cita:
document.getElementById('newsidebar-wrapper').style.backgroundurl = 'http://i201.photobucket.com/albums/aa270/pbozzolo/Beta%20DIR/gave-martin.jpg';