MediaWiki:GoogleAPI.js
From Metabolomics.JP
(Difference between revisions)
| Line 5: | Line 5: | ||
var searchControl = new google.search.SearchControl(); | var searchControl = new google.search.SearchControl(); | ||
var options = new google.search.SearcherOptions(); | var options = new google.search.SearcherOptions(); | ||
| − | options. | + | options.setDrawMode(google.search.SearchControl.DRAW_MODE_TABBED); |
searchControl.addSearcher(new google.search.ImageSearch(),options); | searchControl.addSearcher(new google.search.ImageSearch(),options); | ||
| − | + | searchControl.addSearcher(new google.search.WebSearch(),options); | |
| − | + | searchControl.draw(document.getElementById("searchcontrol")); | |
| − | searchControl.addSearcher(new google.search.WebSearch(), | + | |
| − | + | ||
| − | searchControl.draw(document.getElementById(" | + | |
setTimeout(function(){searchControl.execute("{{{1}}}");},200); | setTimeout(function(){searchControl.execute("{{{1}}}");},200); | ||
} | } | ||
google.setOnLoadCallback(OnLoad, true); | google.setOnLoadCallback(OnLoad, true); | ||
Revision as of 10:29, 7 September 2010
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);