MediaWiki:GoogleAPI.js
From Metabolomics.JP
(Difference between revisions)
Line 3: | Line 3: | ||
function OnLoad() { | function OnLoad() { | ||
// Create a search control | // Create a search control | ||
− | var searchControl = new google.search.SearchControl( | + | var searchControl = new google.search.SearchControl(null); |
− | + | ||
− | + | ||
searchControl.addSearcher(new google.search.ImageSearch()); | searchControl.addSearcher(new google.search.ImageSearch()); | ||
searchControl.addSearcher(new google.search.WebSearch()); | searchControl.addSearcher(new google.search.WebSearch()); | ||
+ | |||
+ | var drawOptions = new google.search.drawOptions(); | ||
+ | drawOptions.setDrawMode(google.search.SearchControl.DRAW_MODE_TABBED); | ||
searchControl.draw(document.getElementById("searchcontrol"), drawOptions); | searchControl.draw(document.getElementById("searchcontrol"), drawOptions); | ||
setTimeout(function(){searchControl.execute("{{{1}}}");},200); | setTimeout(function(){searchControl.execute("{{{1}}}");},200); | ||
} | } | ||
google.setOnLoadCallback(OnLoad, true); | google.setOnLoadCallback(OnLoad, true); |
Revision as of 10:42, 7 September 2010
google.load('search', '1.0'); function OnLoad() { // Create a search control var searchControl = new google.search.SearchControl(null); searchControl.addSearcher(new google.search.ImageSearch()); searchControl.addSearcher(new google.search.WebSearch()); var drawOptions = new google.search.drawOptions(); drawOptions.setDrawMode(google.search.SearchControl.DRAW_MODE_TABBED); searchControl.draw(document.getElementById("searchcontrol"), drawOptions); setTimeout(function(){searchControl.execute("{{{1}}}");},200); } google.setOnLoadCallback(OnLoad, true);