Whats code for making my website the default search engine ?

For example, as you can see on http://www.dogpile.com/

"Add dogpile to your browser"

I have a site www.searchr.us

I want to add a same thing. But I'm unable to understand how to make it. Is there any tutorial?

And will the code which you provide work on any browser ?

Thanks

link|improve this question

45% accept rate
feedback

2 Answers

up vote 0 down vote accepted

A quick look at the source reveals:

function addSearch(url) {
    try {
         if(null != url) {
             window.external.AddSearchProvider(url);
         }
    }
    catch (e) {
        // do nothing
    }
    return false;
}

It is related to OpenSearch:

To install an OpenSearch plugin, you need to use the window.external.AddSearchProvider() DOM method. The syntax for this method is:

    window.external.AddSearchProvider(engineURL);

Where engineURL is the absolute URL to the XML file for the search engine plugin.

or for auto-discovery:

<link rel="search" type="application/opensearchdescription+xml" title="searchTitle" href="pluginURL">

See the official website of OpenSearch.

link|improve this answer
feedback

All that button does is return an OpenSearch description file. What to do with that is up to the browser; I guess most will add the described search engine to their list of shortcut search engines.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.