Skip to content

Instantly share code, notes, and snippets.

@abhivaikar
Last active September 23, 2017 18:53
Show Gist options
  • Save abhivaikar/e82deb0ce08f4bad21f091240e3d3fad to your computer and use it in GitHub Desktop.
Save abhivaikar/e82deb0ce08f4bad21f091240e3d3fad to your computer and use it in GitHub Desktop.
bookmarklet code for quick google
javascript:(function() { var googleBaseURL = "https://www.google.co.in/search?q="; var query = prompt("Google what?"); if(query) {window.open(googleBaseURL+query); } else return })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment