Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialPatrick Kane
Full Stack JavaScript Techdegree Student 354 Pointshow would you store list item somewhere in the middle
Lets say we have 10 list items and we would like to choose the fifth one. I just got some basic knowledge from practicing, however if I do it same way I would have to using 1-4 list items to get the fifth one by using
4thlistItem.nextElementSibling
Is there any easier way how to do it?
Thanks
1 Answer
Steven Parker
231,210 PointsIf you are stepping through the child elements one at a time, your method may be the easiest. But if you are starting with a reference to the parent and wish to get directly to the fifth child, you might use:
parentElement.children[4] // since the indexes begin with 0
Hannah Cherba
Front End Web Development Techdegree Graduate 14,319 PointsHannah Cherba
Front End Web Development Techdegree Graduate 14,319 PointsHere are the notes I copied on this section of the video:
Summary of elements to access the DOM:
https://javascript.info/searching-elements-dom
Accessing the first child: node.firstElementChild Access the second element in a list with: node.nextElementSibling or .list li:nth-child(2) Access the last element in a list with: node.lastElementChild Access the 2nd to last element by using the last element and: node.previousElementSibling You can access a previous sibling element (like a div, by using the .previousElementSibling as well.
Hopefully this helps, Hannah