Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
10k views

google.setOnLoadCallback with jQuery $(document).ready(), is it OK to mix?

I'm using Google Ajax API and they suggest I use google.setOnLoadCallback() to do various things related to their API but I'm using also jQuery's $(document).ready() to do other JS things, not related ...
9
votes
6answers
7k views

Clean way in GWT/Java to wait for multiple asynchronous events to finish

What is the best way to wait for multiple asynchronous callback functions to finish in Java before continuing. Specifically I'm using GWT with AsyncCallback, but I think this is a generic problem. ...
4
votes
2answers
866 views

how to: dynamically load google ajax api into chrome extension content script

I'm trying to make use of google's ajax apis in a chorme extension's "content script". On a regular html page, I would just do this: <script src="http://www.google.com/jsapi"></script> ...
3
votes
1answer
686 views

Implementing fallback from Google AJAX Libraries API to local jQuery

After looking up the advantages and disadvantages of using Google's AJAX Libraries API instead of using jQuery locally, I saw that someone wrote in an answer (here on Stack Overflow, of course) that ...
2
votes
3answers
205 views

Google AJAX search api

Using the Google AJAX search api How can I call a search from my own text box? And parse the results in javascript?
2
votes
3answers
224 views

Can I use google to determine vhosts on same IP?

Can I use google -- specifically i am thinking of the google ajax api -- to enumerate a list of host names of websites that are hosted on a particular IP address. Note Yes, I know that other ...
2
votes
1answer
1k views

How to read Google AJAX Feed API results from C# code?

I want to use Goolge AJAX Feed API in my C# console application to save return feeds as C# collection so i can use this .net collcetion in my .net application. I noticed google give a Java Access ...
1
vote
0answers
120 views

Google Images Search API request restricted?

All! I wanted to develop a feature for a blog I wrote myself. I want to grab the search result of Google Images, and display them in a user-friendly way in or beside my blog's posts editor. So I did ...
1
vote
1answer
108 views

google loader causing browser to change location FF or blank page in chrome

I have an issue using the google loader in an existing webpages. When I call e.g. google.load("translate","1"); If FireFox, the browser changes it's location trying to load something from google ...
1
vote
1answer
108 views

Using google apis libraries- key required?

I'm confused about the proper use of google apis libraries. Specifically, is a key required when using Google AJAX Libraries? This OK?: <script ...
1
vote
0answers
29 views

In my google API mash code, How to update existing newsframe instead of inserting newsframe?

Below is the Javascript code used. google.load("elements", "1", {packages : ["newsshow"]}); function loadNews(newsQuery) { //Load the news feed according to the topic selected ...
1
vote
1answer
94 views

Cancel request in google ajax api

I'm doing small AJAX searchbar with "new google.search.WebSearch();" from Google AJAX Api. How do i can cancel an ongoing ajax request? I usually do a: var xhr; function Something() { xhr.stop(); ...
1
vote
1answer
282 views

google.load custom js

I am using google ajax api How can I load custom js which depends on libs loaded by ajaxapi?
1
vote
1answer
249 views

Prepare a string for Google Ajax Search?

I have strings such as ["Tabula Rasa", "façade", "DJ Tiësto"] I'm accessing Google Ajax API in Python using the base url: base = 'http://ajax.googleapis.com/ajax/services/search/web' ...
1
vote
4answers
4k views

Is it ok to use google.setOnLoadCallback multiple times?

I'm building a site using ASP.NET MVC, and I have partial views that use jquery to do various things. I was thinking of switching to google's ajax api and using their loader to load jquery. However, ...
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
34 views

Regarding google search api

I need to use google search result in my website. i came across http://code.google.com/apis/customsearch/v1/overview.html which provide result in json format but only 100 free queries are allowed per ...
0
votes
1answer
88 views

Why (and when) does Google CDN serve jQuery uncompressed?

When I load Google's hosted jquery.min.js, it does not return gzipped: Request headers Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Cache-Control:max-age=0 ...
0
votes
0answers
83 views

How do I test if a google ajax api load is successful

Is it possible to test for a success / failure notice from google ajax api's? i.e. To provide a fallback option if the load fails (or even takes too long). I've used the 'standard' approach before: ...
0
votes
0answers
162 views

Google Ajax Search API with Adsense ads

I'd like to create a search engine for my site using the Google Ajax Search API (REST) and deliver Adsense ads on the result page (based on the results). This would limit me to max 64 results, but ...
0
votes
1answer
179 views

Need setOnLoadCallback() Alternative

I'm working on an internal site, and cannot make an external call to Google's API to use their setOnLoadCallback() function, and can't seem to find any pure JQuery alternatives that I can use with my ...
0
votes
2answers
1k views

Can you load Google Maps API v3 via Google AJAX API loader

Some time ago I used the regular method of loading Google Maps API like this: <script type="text/javascript" src="http://maps.google.com/maps?file=api&v=2&key=abcdefg&sensor=true"> ...
0
votes
1answer
249 views

where do I get a key for google-translate?

It appears that to use Google Translate you have to use an API key but I can't find anywhere where do I get the key. Is the key the same used for the search APIs?
0
votes
1answer
354 views

Jquery: DIV tag not refreshing in IE/Chrome using Jquery setInterval

I am trying to read blog entries feed by using Google-Ajax-Feed-API and JQuery. I have achieved most of the stuff, but in refreshing the DIV tag after every 10sec, I am having some problem. The code ...
0
votes
2answers
346 views

how to get the geo data from geo-rss via google ajax feed api

this is my code that has geo-rss from google maps rss: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html ...
0
votes
1answer
113 views

Google Ajax Library API & jQuery(function() {})

i wonder if i use google.load("jquery", 1); google.setOnLoadCallback(function() { // i still need to check if document has finished loading with $(function() { // do stuff }); ...
0
votes
1answer
623 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 ...
0
votes
1answer
321 views

Why can't I get the icons when I use jQueryUI with Google Ajax API within Jetpack?

I can't get any icons to be shown on a modal dialog box when I try to use jQueryUI via Google Ajax API. The icons do not appear but when I click on the locations where they are supposed to be the ...
0
votes
2answers
65 views

Can I specify what type of URLs to search for? - Google Search

Ok I'm searching for twitter profiles with Google Ajax Search I'm using the following query: ?q=Radiant+Hex+site:twitter.com I'm looking for urls like these: twitter.com/radianthex ...
0
votes
1answer
497 views

Google slideshow shows a blank screen when calling from ajax

I'm having problems implementing google slideshow (http://www.google.com/uds/solutions/slideshow/index.html) to my web application by loading it using a jquery load() function. index.html: ...
0
votes
2answers
976 views

Google AJAX API, jQuery & google.load() vs $(function() {})

when i use google.load() to load jquery, what do i use in place of $(function() { ... }); is ... google.setOnLoadCallback(function() { ... }); the same thing? this may be too slow if i am ...