Topics

Using Google AJAX API to copy google results in array

This is some way you can get Google results as a JavaScript array that you can display on any page, you first need to get your Google API Key then try this code…

	//generate new web search object
	var searcher = new GwebSearch();
	//disable html
	searcher.setNoHtmlGeneration();
	//expand results to max - about 10
	searcher.setResultSetSize(GSearch.LARGE_RESULTSET);
	//excute the search by adding keyword then collect the results in element with id='mydiv'
	searcher.setSearchCompleteCallback( searcher.execute( 'my keyword' ), 
										function()
										{ 
										var results = searcher.results;
										for(i in results)
											for(a in results[i])
												document.getElementById("mydiv").innerHTML += results[i][a]+' | '} ); 

More Description on how to collect information from this array could be found here

By continuing to use the site, you agree to the use of cookies. more information

The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.

Close