Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jakeisonline
Created November 10, 2014 16:52
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 jakeisonline/50de1f15c7470be5acf5 to your computer and use it in GitHub Desktop.
Save jakeisonline/50de1f15c7470be5acf5 to your computer and use it in GitHub Desktop.
Outputs selected drop URLs
var drops = 'Selected drops: \n\n';
$("#recent-drops #listing li section input:checked")
.each(function(i, elem) {
var href = $(elem).parent().parent().find(".type a").prop('href');
drops += href + "\n";
});
console.log(drops);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment