Skip to content

Instantly share code, notes, and snippets.

/x

Created February 12, 2009 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save anonymous/62697 to your computer and use it in GitHub Desktop.
Save anonymous/62697 to your computer and use it in GitHub Desktop.
CmdUtils.CreateCommand({
author: { name: "elbarto", email: "elbarto404@gmail.com"},
description: "search w3schools with google",
name: "w3",
takes: {"w3": noun_arb_text},
preview: function( pblock, searchTerm) {
pblock.innerHTML = "Searches w3schools for: " + searchTerm.text;
},
execute: function( searchTerm ) {
var msg = searchTerm.text + "... loading";
var url2 = "http://www.google.com/search?sitesearch=www.w3schools.com&as_q=" + searchTerm.text;
Utils.openUrlInBrowser( url2 );
displayMessage( msg );
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment