Skip to content

Instantly share code, notes, and snippets.

@amanda
Created February 7, 2015 18:57
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 amanda/0cd81c902f6348f5eb93 to your computer and use it in GitHub Desktop.
Save amanda/0cd81c902f6348f5eb93 to your computer and use it in GitHub Desktop.
bookmarklet to reload a webpage for genius.com annotation
// bookmarklet
javascript:(function()%7B(function%20()%20%7Bvar%20geniusURL%20%3D%20%22http%3A%2F%2Fgenius.com%2F%22%20%2B%20location%3Blocation%20%3D%20geniusURL%3B%7D)()%7D)()
// readable version
(function () {
var geniusURL = "http://genius.com/" + location;
location = geniusURL;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment