Tagged Questions
26
votes
6answers
16k views
Refresh a Div that has a Google ad inside it
I have a div that holds a google ad. My website is mostly AJAX and there is no need for a browser refresh. That means my ads will not refresh either, which isnt ideal, a user staring at one ad all ...
105
votes
5answers
19k views
How does Google Instant work?
Any ideas on exactly how the new google instant search works? It seems to just be AJAX calls to the old search, but it's pretty hard to simplify Google that much. Anybody have speculations?
EDIT:
I ...
8
votes
9answers
4k views
Do Google's crawlers interpret Javascript? What if I load a page through AJAX? [closed]
When a user enters my page, I have to make another AJAX call...to load data inside a div.
That's just how my application works.
The problem is...when I view the source of this code, it does not ...
8
votes
3answers
6k views
Trying to bind multiple InfoWindows to multiple Markers on a Google Map and failing
My project uses a JSON feed to grab info about earthquakes within a specified latitude and longitude boundary, essentially making a box. I take this info and turn all the results into markers on a ...
10
votes
5answers
6k views
How does Google's javascript API get around the cross-domain security in AJAX
How does Google's API make cross-domain requests back to Google, when it's on your website?
16
votes
6answers
3k views
Google using # instead of search? in URL. Why?
I'm not sure how long they've been doing it but I just noticed google using # in their search url instead of search?.
New way
http://www.google.com/#q=stackoverflow
Old way
...
22
votes
3answers
4k views
To hashbang or not to hashbang?
I'm developing a new website and I'd like to make use of AJAX as much as possible. Basically, I want users to almost never navigate away from the homepage and have everything displaying in popup ...
6
votes
8answers
10k views
Google Geocode via HTTP callback function?
I want to use the google geocode via HTTP functionality to translate a city name into longitude and latitude in for my AJAX web application.
However, it appears that no callback function exists for ...
4
votes
1answer
1k views
Get Chinese Romanization from Google Translate API
The Google language translate API works cleanly to translate into Chinese:
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script>
...
3
votes
2answers
3k views
google Adwords conversion script
I have a form, that after submit the form I want to run the script of google Adwords conversion.
I'm using ajax and jQuery:
var dataString = ...
2
votes
3answers
853 views
google indexing text retrieved by ajax or javascript after page load
a couple of google questions:
1 - is there ANY chance that google will "see" text retrieved using ajax?
the user selects from a chain of select boxes and some text from the Db is displayed.
2 - if ...
2
votes
1answer
1k views
Ajax Google Visualization API Gauge with jquery
I am looking to create a dashboard gauge that updates via ajax. Below is the code I have. I have the ajax code but just am unsure on how to update the gauge. Any suggestions?
...
0
votes
2answers
434 views
Ajax generated content, crawling and black listing
My website uses ajax.
I've got a user list page which list users in an ajax table (with paging and more information stuff...).
The url of this page is :
/user-list
User list is created by ajax. ...
9
votes
4answers
12k views
google maps v3 API mouseover with polygons?
I'm building a map using the google v3 api because it is way faster. Essentially, it's a map of an area with about 30 cities with polygons over the regions. When a user hovers over a city, I want the ...
2
votes
2answers
734 views
Google Search optimisation for ajax calls
I have a page on my site which has a list of things which gets updated frequently. This list is created by calling the server via jsonp, getting json back and transforming it into html. Fast and ...