I'm using the Google Search API to load some Search results into my page. I'd like to set an argument to the callback function that says which div the search results should attach themselves to.
Here's the callback function definition, per Google:
.setSearchCompleteCallback(object, method, opt_arguments?)
Here's how I'm doing it:
searcher.setSearchCompleteCallback (document, function() { alert(opt_arguments[0].id); }, new Array(infodiv) );
The documentation explains: "Applications may optionally pass in a context argument using opt_arguments which is then passed to the specified method."
Yes -- but how? I've passed in the context argument, but how do I refer to it within the function? I've tried just calling opt_arguments, but js errors clearly show that it's not defined.
The documentation is here.
Thank you!!