pongo un ejemplo(que por cierto nose xke pero no me reconoce el css..)
el script escribe "mikel"
y quiero que mikel lo ponga dentro del div id="ola"
Código HTML:
<!DOCTYPE html><!-- --> <html lang="es"> <head> <meta charset="utf-8"> <script> function iniciar() { document.write("mikel") } window.addEventListener('load', iniciar, false); </script> <style type="text/css"> #ola { background:red; width: 250px; height:250px; margin:100px; } #hello { width: 500px; height: 500px; } </style> </head> <body id="hello"> <div id="ola"> hola </div> </body> </html>