Skip to content

Instantly share code, notes, and snippets.

@Dosant
Created March 5, 2017 19:28
Show Gist options
  • Save Dosant/b8e1b8983d7d585e9858e8adb3801188 to your computer and use it in GitHub Desktop.
Save Dosant/b8e1b8983d7d585e9858e8adb3801188 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html>
<body>
<div>Начало</div>
<ul>
<li>Информация</li>
</ul>
<div>Конец</div>
<script>
for (var i = 0; i < document.body.childNodes.length; i++) {
alert( document.body.childNodes[i] ); // Text, DIV, Text, UL, ..., SCRIPT
}
</script>
...
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment