Tagged Questions

4
votes
1answer
374 views

Search result links from Google Custom Search not working when viewed in IE6

One of the community sites I work on currently has this issue when viewing search results from Google CS in IE6. For example these results. Attempting to click on any result doesn't provoke the ...
3
votes
1answer
452 views

Implementing Google Custom Search API through Greasemonkey

I want to implement the Google custom search API with Greasemonkey, and so far my trials have met with mostly failures. The goal of the code is to inject a custom search box into an existing site (I'm ...
1
vote
2answers
91 views

Google algorithm for in-site search

I was wandering, does google provide a API or a widget for searching content into your website? Something possibly that is possible to style or even better to plug via AJAX into a widget for realtime ...
1
vote
3answers
2k views

Estimated number of search results Google search API

When you search google, it estimates the number of search results e.g. Results 1 - 10 of about 103,000,000 for hello world How do I get the number 103,000,000 programmically? I'm not interested ...
0
votes
0answers
19 views

google custom search - getting access to results object

I'm trying to apply custom css to google search result and all's well until I need to put a distinctive background behind every other result. So what I've tried is ...
0
votes
2answers
82 views

Access control origin error calling Google custom search API via jQuery

I'm trying to call the google custom search API with JQuery and getting an access-control-origin error. This works: <script> function hndlr(response) { console.log(response); for (var i ...
0
votes
1answer
107 views

Google custom site search (business edition) how to make search results showed in a pop up window

I have a question about the google custom site search on my site. I have paid 100$ to get custom site search on my site everything works only one thing i can't fix. I have set google site search to ...
0
votes
2answers
186 views

how to remove keyup event listeners by javascript

I'm using the Google autocomplete api on a text field to suggest locations as you type. The main problem I have with this is that Google does not let you limit results to a specific country, it just ...
0
votes
1answer
144 views

Why doesn't simple google web search through getJSON always work?

This simple web search through google API is shaky. Sometimes it returns the 4 first findings (as it should), sometimes JSON thinks its a "success" but the responseData is null. Why am I getting these ...
0
votes
1answer
344 views

Bind click event to 'search' button in Google Custom Search

I am trying to customize a two column Google custom search. I really liked the ajax over iframe which populates a div (default div#cse). But the problem is it pushes the other contents down breaking ...
0
votes
1answer
352 views

Strange javascript error when using Google Image Search API

I'm trying to copy the Google image search from this page. Here is my code: <script type="text/javascript"> <% if @note.text == "" %> google.load("search", ...
0
votes
1answer
624 views

Gooogle Search / Map Api Seperating JS from Html

As my coding revolves only around one function,the function OnLoad() where the map and search is together on this function. However i was tasked to separate the Maps and Search JS and was unable to do ...