vote up -1 vote down star

How do I get an element or elementlist by it's tag name. Take for example that I want all elements from

flag

4 Answers

vote up 5 vote down check

document.getElementsByTagName('a') returns an array. Look here for more information: http://developer.mozilla.org/En/DOM/Element.getElementsByTagName

link|flag
vote up 1 vote down

Use $$() and pass in a CSS selector.

Read the Prototype API documentation for $$()

This gives you more power beyond just tag names. You can select by class, parent/child relationships, etc. It supports more CSS selectors than the common browser can be expected to.

link|flag
vote up 0 vote down

Matthias Kestenholz:

getElementsByTagName returns a NodeList object, which is array-like but is not an array, it's a live list.

var test = document.getElementsByTagName('a');
alert(test.length); // n
document.body.appendChild(document.createElement('a'));
alert(test.length); // n + 1
link|flag
vote up 0 vote down

If you use getElementsByTagName, you'll need to wrap it in $A() to return an Array. However, you can simply do $$('a') as nertzy suggested.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.