Skip to content

Instantly share code, notes, and snippets.

@fmtarif
Created January 18, 2015 07:16
Show Gist options
  • Select an option

  • Save fmtarif/c0780eea96e5e2bcc930 to your computer and use it in GitHub Desktop.

Select an option

Save fmtarif/c0780eea96e5e2bcc930 to your computer and use it in GitHub Desktop.
#js #jquery snippets
//get all texts joined by a delimiter from a selector that returns multiple elements
//useful for getting all links for example from youtube page, extract names from list etc
$("ul li").map(function() {return $(this).text()}).get().join("\n")
$("ul li").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