Skip to content

Instantly share code, notes, and snippets.

@halilim
Created July 26, 2013 08:47
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 halilim/6087326 to your computer and use it in GitHub Desktop.
Save halilim/6087326 to your computer and use it in GitHub Desktop.
Pluck texts of all options of a select and join them with \n. Useful for pasting into Navicat.
jQuery.makeArray($("<SELECTOR>").find("option").map(function() { return $(this).text(); })).join("\n");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment