Skip to content

Instantly share code, notes, and snippets.

@rknightuk
Last active May 15, 2024 17:26
Show Gist options
  • Save rknightuk/91dee4a67b3eddabb965 to your computer and use it in GitHub Desktop.
Save rknightuk/91dee4a67b3eddabb965 to your computer and use it in GitHub Desktop.
Search Reddit bookmarklet
javascript:(function()%7Breddit%20%3D%20'http%3A%2F%2Fwww.reddit.com%2Fsearch%3Fq%3D'%3Burl%20%3D%20window.location%3Burl%20%3D%20url.hostname%20%2B%20url.pathname%3Bsearch%20%20%3D%20reddit%20%2B%20url%3Bwindow.location%20%3D%20search%7D)()
reddit = 'http://www.reddit.com/search?q=';
url = window.location;
url = url.hostname + url.pathname;
search = reddit + url;
window.location = search;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment