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 trial

JavaScript

GetElementsByTagName

Let's say I have 2 list in my html.How can I access a precise list with getElementByTagName?

At first there should be plural in method not singular as you wrote in your question.

var lists = document.getElementsByTagName("UL");

or

var lists = document.getElementsByTagName("OL");

method returns slelections that you can access as an array like this:

var firstList = lists[0] ; var secondList = lists[1];

more info in treehouse truck or here:

https://www.w3schools.com/JSREF/met_document_getelementsbytagname.asp