Skip to content

Instantly share code, notes, and snippets.

Created April 4, 2011 02:53
Show Gist options
  • Save anonymous/901080 to your computer and use it in GitHub Desktop.
Save anonymous/901080 to your computer and use it in GitHub Desktop.
A Bookmarklet that searches the current site using Google. -styfle
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