Tagged Questions

16
votes
9answers
2k views

$.getJSON returning cached data in IE8

Hey all, I'm playing around with ASP.net MVC and JQuery at the moment. I've come across behavour which doesn't seem to make sense. I'm calling JQuery's $.getJSON function to po …
4
votes
3answers
384 views

Aborting A jquery getJSON XMLHttpRequest (UPDATED)

Turns out this was an artefact of a Firebug bug. The Ajax request was cancelled, but Firebug continued reporting it as active. Details here. I have long running XMLHttpRequests …
4
votes
2answers
3k views

jQuery.getJSON doesn’t trigger callback

Hi! I have a html code: <button>asd</button> <script type = "text/javascript"> $('button').click( function() { $.getJSON('/schedule/test/', function( …
2
votes
2answers
456 views

jQuery getJSON - Return value to the caller function

String.prototype.getLanguage = function() { $.getJSON('http://ajax.googleapis.com/ajax/services/language/detect?v=1.0&q=' + this + '&callback=?', fu …
2
votes
1answer
1k views

Jquery getJSON to external PHP page

I've been trying to make an ajax request to an external server. I've learned so far that I need to use getJSON to do this because of security reasons ? Now, I can't seem to make a …
1
vote
2answers
156 views

jQuery.getJSON( url, [data], [callback] )

To all, I am trying to retrieve the exchange rate from Google with jQuery's $.getJSON(). Using the request: "http://www.google.com/ig/calculator?hl=en&q=1USD=?CAD" returns a …
1
vote
2answers
43 views

Strange looping problem with jQuery when I try to delete an entry…

I have tried to document this as well as I can in the code. Getting a weird looping thing when I try to delete an item that I've added. Example: I have 3 items that I've added: …
1
vote
0answers
37 views

ajaxStart fails on subsequent requests when using getJSON

Hey, I'm trying to use the ajaxStart and ajaxStop events with getJson calls to my webserver. The ajaxStart event is triggered on the first request, but not on subsequent requests …
1
vote
2answers
588 views

Using jQuery’s getJSON method with an ASP.NET Web Form

Hi, How do I go about calling a method on an ASP.NET Web Form page using the getJSON method on jQuery? The goal is this: User clicks on a list item The value is sent to the ser …
1
vote
2answers
209 views

$.getJSON scope problem

$.getJSON('http://twitter.com/followers/ids.json?screen_name=' + query1 + '&callback=?', function (data) { console.log('JSON data string 1 is: ' + data); $.getJSON('htt …
1
vote
1answer
137 views

jQuery selectors for list elements

I am using jQuery and jQuery UI. Using the getJSON function, we are creating list elements and appending them to an OL element. Here's the code: $.getJSON("http://localhost/b/t.p …
0
votes
3answers
33 views

Nested JSON in IE6 causes problems.

I'm making a request to a JSON page using jQuery's $.getJSON method, and from the returned JSON i'm creating some HTML and putting it on to the page. The problems appears when I h …
0
votes
5answers
80 views

Position An Injected DIV Using JQuery’s “Load” Function

I'm pulling some info from a database then putting it into a DIV and injecting all that in to my page. The problem I have is positioning the newly injected DIV after it has finishe …
0
votes
2answers
27 views

$.getJson callback function is not working

I am calling a JSP by passing parameters which outputs a valid JSON as response, but still the $.getJson callback function is not getting fired. JSP page output is { "data": [ …
0
votes
2answers
35 views

Error handling in getJSON calls

How can you handle errors in a getJSON call? Im trying to reference a cross-domain script service using jsonp, how do you register an error method?

1 2 3 next
15 30 50 per page