diff --git a/2-ui/1-document/03-dom-navigation/article.md b/2-ui/1-document/03-dom-navigation/article.md index b58f15fe..0578d14d 100644 --- a/2-ui/1-document/03-dom-navigation/article.md +++ b/2-ui/1-document/03-dom-navigation/article.md @@ -7,9 +7,9 @@ libs: # Walking the DOM -DOM allows to do anything with elements and their contents, but first we need to reach the corresponding DOM object, get it into a variable, and then we are able to modify it. +The DOM allows to do anything with elements and their contents, but first we need to reach the corresponding DOM object, get it into a variable, and then we are able to modify it. -All operations on DOM start with the `document` object. From it we can access any node. +All operations on the DOM start with the `document` object. From it we can access any node. [cut] @@ -275,7 +275,7 @@ Certain types of DOM elements may provide additional properties, specific to the Tables are a great example and important particular case of that. -**`
` and ` | ` cells inside the given ` |
---|---|
` and ` | `:** - `td.cellIndex` -- the number of the cell inside the enclosing ` |