Skip to content

Instantly share code, notes, and snippets.

@fitorec
Created January 8, 2010 23:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fitorec/272596 to your computer and use it in GitHub Desktop.
Save fitorec/272596 to your computer and use it in GitHub Desktop.
Instalador del openwebSearch ejemplo
function instalarBuscador( ){
if ((typeof window.sidebar == "object") &&
(typeof window.sidebar.addSearchEngine == "function"))
{
window.sidebar.addSearchEngine(
"http://mundosica.com/openSearchSICA.xml",
"http://mundosica.com/images/sica-search16x16.png",
"mundosica.com",
"Web"
);
}
else
{
alert("Mozilla M15 or later is required to add a search engine.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment