up vote 16 down vote favorite
4
share [g+] share [fb]

I have a structure like this:

<ul>
  <li>text1</li>
  <li>text2</li>
  <li>text3</li>
</ul>

How do I use javascript or jQuery to get the text as an array?

['text1', 'text2', 'text3']

My plan after this is to assemble it into a string, probably using .join(', '), and get it in a format like this:

'"text1", "text2", "text3"'
link|improve this question

feedback

5 Answers

up vote 28 down vote accepted
var optionTexts = [];
$("ul li").each(function() { optionTexts.push($(this).text()) });

...should do the trick. To get the final output you're looking for, join() plus some concatenation will do nicely:

var quotedCSV = '"' + optionTexts.join('", "') + '"';
link|improve this answer
Does jQuery guarantee an order to the elements returned by the query? I would assume that the order returned is the same as the ordering in the DOM (ie text1, text2, text3), but I don't know what to look for in the documentation to see if this is true. – styfle Dec 23 '11 at 1:08
feedback

Without redundant intermediate arrays:

arr = $('li').map(function(){
   return $(this).text();
}).get();
link|improve this answer
1  
You miss .get() at the end. – Felix Kling Mar 4 '11 at 18:12
Based on Felix Klings suggestion: arr = $('li').map(function(){ return $(this).text(); }).get(); – Emil Stenström Mar 7 '11 at 14:21
Thx, fixed..get() added – kimstik Mar 16 '11 at 12:38
1  
i dont understand why "get function" is necessary. – ingcarlos Jul 26 '11 at 20:54
Yeah, what is the .get() for? – Chris Abrams Sep 19 '11 at 0:50
feedback

And in clean javascript:

var texts = [], lis = document.getElementsByTagName("li");
for(var i=0, im=lis.length; im>i; i++)
  texts.push(lis[i].firstChild.nodeValue);

alert(texts);
link|improve this answer
feedback

kimstik was close, but not quite.

Here's how to do it in a convenient one-liner:

$.map( $('li'), function (element) { return $(element).text() });

Here's the full documentation for jQuery's map function, it's quite handy: http://api.jquery.com/jQuery.map/

Just to answer fully, here's the complete functionality you were looking for:

$.map( $('li'), function (element) { return $(element).text() }).join(', ');
link|improve this answer
feedback
var arr = new Array();

$('li').each(function() { 
  arr.push(this.innerHTML); 
})
link|improve this answer
Instead of relying on innerHTML, you should change "this" to a jQuery object and use the jQuery native text method. $(this).text() – Nathan Strutz Oct 29 '08 at 14:49
1  
why? eventually $(this).html() will use the native method – Kheu Jul 21 '10 at 9:00
feedback

Your Answer

 
or
required, but never shown

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