it's only on my local computer for now.
<script type="text/javascript">
// Load the Search API
google.load('search', '1');
// Set a callback to load the Custom Search Element when you page loads
google.setOnLoadCallback(
function(){
//add parameters
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',customSearchOptions);
// Use "mysite_" as a unique ID to override the default rendering.
google.search.Csedr.addOverride("mysite_");
// Draw the Custom Search Control in the div named "CSE"
customSearchControl.draw('cse');
// Execute an initial search
customSearchControl.execute("waka+waka");
},
true);
</script>
<div class="columns-global">
<div style="display:none">
<!-- Return the unescaped result URL.-->
<div id="mysite_webResult" style="display:none">
<div class="gs-webResult gs-result"
data-vars="{longUrl:function() {
var i = unescapedUrl.indexOf(visibleUrl);
return i < 1 ? visibleUrl : unescapedUrl.substring(i);}}">
<!-- Build the result data structure.-->
<table>
<tr>
<td valign="top">
<div data-if="Vars.richSnippet" data-attr="0"
data-body="render('thumbnail',richSnippet,{url:unescapedUrl,target:target})"></div>
</td>
<td valign="top">
<!-- Append results within the table cell.-->
<div class="gs-title">
<a class="gs-title"
data-body="html(title)"></a>
</div>
</td>
</tr>
</table>
</div>
</div>
</div>
<!-- Div container for the searcher.-->
<div id="cse"></div>
</div>
Thanks
Yves