MediaWiki:GoogleAPI.js

Revision as of 07:35, 7 April 2013 by Jcblmaster (talk | contribs) (Created page with " google.load('search', '1.0'); function OnLoad() { // Create a search control var searchControl = new google.search.SearchControl(null); var options ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
   google.load('search', '1.0');
 
    function OnLoad() {
      // Create a search control
      var searchControl = new google.search.SearchControl(null);
      var options = new google.search.SearcherOptions();
      options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
      searchControl.addSearcher(new google.search.ImageSearch(),options);
      //var options2 = new google.search.SearcherOptions();
      //options2.setExpandMode(google.search.SearchControl.EXPAND_MODE_PARTIAL);
      //options2.setRoot(document.getElementById("scW"));
      //searchControl.addSearcher(new google.search.WebSearch(),options2);
      searchControl.draw(document.getElementById("scI"));
      setTimeout(function(){searchControl.execute("{{{1}}}");},200);
    }
    google.setOnLoadCallback(OnLoad, true);