Skip to content

Instantly share code, notes, and snippets.

@monokrome
Created September 29, 2011 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monokrome/1251958 to your computer and use it in GitHub Desktop.
Save monokrome/1251958 to your computer and use it in GitHub Desktop.
var obj, $some_object, text;
$some_object = jQuery('#something li')
text = ''
for (obj in $some_object)
{
text = text + obj.text();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment