Skip to content
Advertisement

Why does jQuery select only one element when chaining .attr() in selector?

I have a simple list of links:

JavaScript

How do I select these links with jQuery?

$('a') – this returns all the links

How do I get all the contents of these links (“link 1”, “link 2”, “link 3″…)?

$('a').text()

How do I get all the hrefs from the links (1, 2, 3…)?

$('a').attr('href')

NOT TRUE ^ IT SELECTS ONLY THE FIRST LINK and returns 1 instead of [1, 2, 3, 4, 5, 6, 7, 8, 9, 10].

I know I could map, do each etc. but I’m writing a crawler that uses this a lot and wondered why is this happening and whether I can get all the hrefs without any loops here, just using jQuery’s (preferably jQuery core) selectors?

Demo: https://jsfiddle.net/z5j1ty08/

Advertisement

Answer

You can’t really loop over DOM elements without, well, looping through them.

Looping won’t have any dramatic effect on the performance of your web-crawler.

This being said, you’re just looking at:

JavaScript

Demo: https://jsfiddle.net/q1er5946/

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement