Skip to content

Instantly share code, notes, and snippets.

@martinbean
Created October 26, 2010 10:06
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinbean/646639 to your computer and use it in GitHub Desktop.
Save martinbean/646639 to your computer and use it in GitHub Desktop.
Want to quickly do a WHOIS look-up of the domain of the current website you're browsing? Simple save the following snippet as a bookmark in your favourite WebKit-enabled web browser...
javascript:var loc=window.location.host;window.location.href='http://whois.domaintools.com/'+loc;
@martinbean
Copy link
Author

Want WHOIS details to open in a new window as opposed to your current working window? Simply use the following bookmarklet instead:

javascript:var loc=window.location.host;window.open('http'+'://whois.domaintools.com/'+loc);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment