vote up 2 vote down star

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"'
flag

3 Answers

vote up 6 vote down check
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|flag
vote up 1 vote down

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|flag
vote up 1 vote down
var arr = new Array();

$('li').each(function() { 
  arr.push(this.innerHTML); 
})
link|flag
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

Your Answer

Get an OpenID
or

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