Skip to content

Instantly share code, notes, and snippets.

@tommcfarlin
Created September 3, 2015 12:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tommcfarlin/df621930bf088f504c4b to your computer and use it in GitHub Desktop.
Save tommcfarlin/df621930bf088f504c4b to your computer and use it in GitHub Desktop.
[JavaScript] Get Values of Multiple Elements in jQuery
$( '.review-id' ).map(function() {
return $( this ).text();
})
.get()
.join( ',' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment