Created
November 16, 2010 09:26
-
-
Save dave1010/701616 to your computer and use it in GitHub Desktop.
Get a quick list of all issues on the current page with their #
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add as a bookmark with "javascript:" at the beginning of the URL to make into a bookmarklet | |
(function(){var o = '';$('.issue').each(function() {var n = '#' + $('.number', this).text().replace('.', '') + ' - ',t = $('.issue_title', this).text();o += n+t + '\n';});alert(o);})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment