Tagged Questions

70
votes
15answers
27k views

Where do you include the jQuery library from? Google JSAPI? CDN?

There are a few ways to include jQuery and jQuery UI and I'm wondering what people are using? Google JSAPI jQuery's site your on site/server another CDN I have recently been using Google JSAPI, ...
2
votes
2answers
57 views

Will Google throttle attempts to obtain user location using client-side jsapi calls?

I installed this JavaScript project which attempts to obtain the user's geolocation using client-side JavaScript. https://github.com/codejoust/session.js/ The default mechanism for the location ...
2
votes
4answers
341 views

Is it essential to use a developer key in Google Jsapi calls?

I've been using Google Jsapi like so: <script type="text/javascript" src="http://www.google.com/jsapi"></script> <script type="text/javascript"> google.load("jquery", "1.3"); ...
2
votes
1answer
108 views

Google custom search (or alternative) in XHML

Google's JavaScript API makes use of the function document.write, thus is not usable in XHTML. Do you know a workaround how to get the custom search working in XHTML? Or is there a working ...
1
vote
0answers
358 views

How can I get the full backtrace in spidermonkey (JSAPI) from my reportError function

I'm embedding javascript in my app using spidermonkey and I have a function called reportError that receives a JSErrorReport. It seems simple to grab the current line of the error, but is it possible ...
0
votes
1answer
23 views

Google visualization: how to provide user search on a DataTable object?

I have a DataTable object that contains all the data for a Table visualization. I want to provide a search facility for users of the table, filtering the rows from the Table based on the search ...
0
votes
1answer
35 views

Using Google JSAPI breaks my infieldlabel javascript, why and how do I fix it?

I currently have a site that both needs JSAPI and infieldlabels javascript. I have the following code: <script type="text/javascript" ...
0
votes
1answer
51 views

Enumerate all properties in Mozilla JSAPI

I want to programmatically list all properties of JS object from C++ code (I am using Mozilla's JSAPI). I know I can go up the prototype chain with JS_GetPrototype, then enumerate each object's own ...