Skip to content

Instantly share code, notes, and snippets.

@Dosant
Created March 5, 2017 19:54
Show Gist options
  • Save Dosant/6a6bcc262ac74e5993667ccfb5bbd4d6 to your computer and use it in GitHub Desktop.
Save Dosant/6a6bcc262ac74e5993667ccfb5bbd4d6 to your computer and use it in GitHub Desktop.
<ul>
<li>Этот</li>
<li>тест</li>
</ul>
<ul>
<li>полностью</li>
<li>пройден</li>
</ul>
<script>
var elements = document.querySelectorAll('ul > li:last-child');
for (var i = 0; i < elements.length; i++) {
alert( elements[i].innerHTML ); // "тест", "пройден"
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment