Using the web developer console I can access the content of the first item of particular class like this from the web console:
$(".license-box pre").text();
However, what if there is more than one object with the name "pre" which are members of the class "license-box"? How do I access instance 1, 2, n etc?
I am NOT asking how to iterate through a list of class members. I am asking how to access the Nth member of the list, which is a different question. This is not a duplicate of the marked post. It is a duplicate of the post Felix King linked below, so it should be retagged correctly to point to Felix's item.
Solution as posted below: use the .eq()
method.