Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update what-is-dom-define-dom.es.md #2220

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion src/content/lesson/what-is-dom-define-dom.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,21 @@ Con JavaScript podemos manipular el DOM (elementos del sitio web) durante el tie
NOTA: Por favor recuerda siempre que todo el código JavaScript que escribas en tu documento HTML DEBE estar envuelto dentro de una etiqueta `<script>`, así:

```html
<script>
<script type="text/javascript">
// tu código aquí
</script>
```

Hoy en día, solemos escribir todo nuestro código JS en un archivo separado con extensión .js, en cuyo caso la etiqueta de script en el cuerpo de tu html debe ser así:

```html
<body>
<div>algún contenido</div>
<div>más contenido</div>

<script src="index.js" type="text/javascript"></script>
</body>
```
## Cómo actualizar el DOM de tu sitio web

Hay varias formas de manipular el DOM, pero la más sencilla es `document.write()`. Cada vez que escribas `document.write()`, estarás creando en el HTML el string que decidas pasar como parámetro a la función *write*.
Expand Down