MediaWiki:GoogleAPI.js
From Metabolomics.JP
Note: After saving, 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: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Konqueror: Click Reload or press F5
- Opera: Clear the cache in Tools → Preferences
google.load('search', '1.0'); function OnLoad() { // Create a search control var searchControl = new google.search.SearchControl(); var options = new google.search.SearcherOptions(); options.setDrawMode(google.search.SearchControl.DRAW_MODE_TABBED); searchControl.addSearcher(new google.search.ImageSearch(),options); searchControl.addSearcher(new google.search.WebSearch(),options); searchControl.draw(document.getElementById("searchcontrol")); setTimeout(function(){searchControl.execute("{{{1}}}");},200); } google.setOnLoadCallback(OnLoad, true);