Skip to content

Instantly share code, notes, and snippets.

@styfle
Forked from anonymous/Search Current Site
Created February 4, 2012 18:42
Show Gist options
  • Save styfle/1739408 to your computer and use it in GitHub Desktop.
Save styfle/1739408 to your computer and use it in GitHub Desktop.
A Bookmarklet that searches the current site using Google.
javascript:var%20u%20=%20document.URL;%20%20var%20a%20=%20u.split("://");%20var%20protocol%20=%20a[0];%20var%20temp%20=%20a[1];%20%20a%20=%20temp.split("/");%20var%20fullDomain%20=%20a[0];%20var%20theRest%20=%20a[1];%20%20var%20q%20=%20window.prompt("Search%20"+fullDomain+"%20for:%20","");%20q%20=%20q.replace("%20",%20"+");%20document.location%20=%20"http://www.google.com/search?btnG=1&pws=0&q=site%3A"+fullDomain+"+"+q;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment