Hello,
I'm trying to configure google custom search to only return images
from my search.
But it also returns web search!
Here is my code:
var customSearchOptions = {};
var imageSearchOptions = {};
imageSearchOptions['layout'] =
google.search.ImageSearch.LAYOUT_CLASSIC;
customSearchOptions['enableImageSearch'] = true;
customSearchOptions['filetype'] = 'jpg';
customSearchOptions['imageSearchOptions'] = imageSearchOptions;
var customSearchControl = new
google.search.CustomSearchControl('015544809827350742733:tb1985qexa8',custo mSearchOptions);
Can anyone help?
Thanks