Estuve probando con:
Código HTML:
document.getElementsByTagName("section").style.backgroundImage = "url('../imagenes/imagen.png')";
Pero me daba este error:
Código:
Uncaught TypeError: Cannot set property 'backgroundImage' of undefined
Pero me funciona con:
Código HTML:
document.body.style.backgroundImage = "url('../imagenes/imagen.png')";
Así que de momento así lo dejo. Gracias.
bichomen