Skip to content

Instantly share code, notes, and snippets.

@sgraber
Created February 24, 2011 21:33
Show Gist options
  • Save sgraber/842930 to your computer and use it in GitHub Desktop.
Save sgraber/842930 to your computer and use it in GitHub Desktop.
Reddit Bookmarklet to Add URLs to Links in Pages Before Printing
// Reddit Bookmarklet to Add URLs to Links in Pages Before Printing
// Add to your bookmark bar and click on it on any Reddit page and hyperlinks will have their
// URLs added right below the link. Nice for printing!
javascript:var x=$(".content").find("div.md a").each(function(){var href= (this).attr("href");$(this).after("<br \/>"+href);});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment