Tagged Questions
Load JSON-encoded data from the server using a GET HTTP request.
58
votes
7answers
15k 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 populate some div's. ...
19
votes
4answers
23k views
jQuery.getJSON doesn't trigger callback
I have a html code:
<button>asd</button>
<script type = "text/javascript">
$('button').click(
function() {
$.getJSON('/schedule/test/', function(json) {
...
12
votes
4answers
9k 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?
12
votes
4answers
22k views
How to use getJSON, sending data with post method?
I am using above method & it works well with one parameter in url
e.g. Students/getstud/1 where controller/action/parameter format is applied.
now I have an action in Students controller that ...
9
votes
2answers
2k views
load json into variable
I have to do something very simple, but there doesn't seem to be an easy way to do this, as far as I can tell. I just want to load JSON data from a remote source and store it in a global Javascript ...
7
votes
3answers
129 views
Need help with variable scope in Javascript
I have the following Javascript function that should return an array of groups that are in database. It uses $.getJSON() method to call get_groups.php which actually reads from the database.
function ...
7
votes
4answers
2k views
Characters with jquery json
I'm using jquery $.getJSON to retrieve list of cities.
Everything works fine, but I'm from Estonia (probably most of you don't know much about this country =D) and we are using some characters like ...
6
votes
3answers
4k views
jQuery getJSON() - how to pass request headers?
Original Question
I need to do a getJSON() request, but how do i pass authorisation and custom headers?
New Question
I am getting issues that by using your example that the request header are ...
6
votes
4answers
8k views
using jquery.getJson with Google's GeoCoding HTTP Service
Google offers a wonderful REST interface for geocoding and reverse geocoding an address. My API key is valid, and if I enter the request directly into the browser address it works great. However, the ...
6
votes
2answers
15k 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 simple call to an ...
5
votes
2answers
1k views
NodeJS won't return data to jQuery.getJSON
I've set up NodeJS and it's returning data when I browse to the URL: http://184.106.206.235
However, when I try to call that URL using $.getJSON, the callback shows null for the data variable and ...
5
votes
2answers
2k views
Accessing ASP.NET MVC Model Data from external Javascript file
I'm trying to use JQuery's $.getJSON to access Model data from the Controller, and build a JSON object in the javascript to use as the user adds and removes items from a list. All JS is done in an ...
5
votes
4answers
3k 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 and I need to be ...
5
votes
3answers
10k views
Using jQuery's getJSON method with an ASP.NET Web Form
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 server
Server responds with ...
4
votes
3answers
51 views
jquery load specific content from a file
i'm trying to get specific text from a plain-text organized by tags or whatever; and then load on a existing div or create on the fly a div to load on it.
dont know if with json it could be ok
i've ...
4
votes
3answers
200 views
How to loop through this JSON Data using Jquery to display klout score?
API JSON Data:
{"status":200,"users":[{"twitter_screen_name":"mikerbrt","influencers":
[{"twitter_screen_name":"techcrunch","kscore":85.17},
{"twitter_screen_name":"tinucherian","kscore":61.5},
...
4
votes
3answers
3k views
JQuery's getJSON() not setting Accept header correctly?
It looks like people have had issues with Accept headers in the past, but I'm not sure my issue is related. Using jQuery 1.4.2, I'm having trouble getting JSON with getJSON(). I can watch the ...
4
votes
4answers
1k views
Why isn't this simple bit of jQuery getJSON working in IE8?
I've got a very standard AJAX request:
$.getJSON('/products/findmatching/38647.json', {}, function(JsonData){
var tableHtml = '';
var x;
for (x in JsonData.matchingProds) {
var ...
4
votes
2answers
2k views
jQuery getJSON request returning empty on a valid request
I'm trying to grab some JSON from Apple's iTunes JSON service. The request is simple:
http://ax.phobos.apple.com.edgesuite.net/WebObjects/MZStoreServices.woa/wa/wsSearch?term=jac&limit=25
If you ...
3
votes
1answer
106 views
I can't read a JSON with getJson
I know that my question has been answered many times but I still cannot figure out how to make one work for me.
I am trying 2 days now to fix my problem by reading the forum but I have probably ...
3
votes
2answers
75 views
How much data should one JSON call retrieve?
When getting a list of items via a json call is it better to use several small calls (to get info as it's needed) or one large call with all the data.
For example, you have a json call to get a list ...
3
votes
1answer
1k views
getJSON or AJAX requests not working with IE9
I have been trying to solve this problem for hours (searched here as well but none of the solutions worked) so I had no other option but to hope for someone to tell me why this is happening and how ...
3
votes
1answer
308 views
Cannot load Google Images from its API using jQuery getJSON
My code is below:
$.getJSON('https://ajax.googleapis.com/ajax/services/search/images?q=Google&v=1.0',
function(json) {
alert(json);
})
You can try this code here: ...
3
votes
3answers
2k views
Send list/array as paramater with jQuery getJson
I have the following where I'm trying to send list/array to MVC controller method:
var id = [];
var inStock = [];
$table.find('tbody>tr').each(function() {
...
3
votes
1answer
281 views
Is this a valid jquery getJSON call?
I am using jquery getJSON with asp.net mvc controller... I cant able to get it work....
public JsonResult GetMaterials(int currentPage,int pageSize)
{
var materials = ...
3
votes
3answers
3k 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 simple JSON file: ...
3
votes
5answers
10k views
Jquery getJSON populate select menu question
I am populating a select menu with getJSON. I am wondering if there's a way that I can use jQuery's .each function to bring in these values?
Surely there must be an easier way to accomplish ...
3
votes
2answers
8k 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=?',
function(json) {
...
2
votes
2answers
30 views
Calling external objects from $.getJSON [closed]
Possible Duplicate:
Why doesn't this closure have access to the 'this' keyword? - jQuery
function class1() {
this.url = ...
2
votes
3answers
73 views
How to associate getJSON error handler with query that caused it
I'm doing a batch of getJSON() calls within a loop.
When the calls succeed the JSON returned contains a value equal to the loop counter, but when the error handler is called I can't seem to figure ...
2
votes
3answers
83 views
jQuery $.get returning full Object vs just what I need
Here is my code:
var source;
source = $.getJSON(url, function(json) {
return console.log(json);
});
The above is returning the full jQuery object vs the JSON I am requested. The response looks ...
2
votes
1answer
82 views
Help with $.getJSON to recieve json from api URL
Hey I've done about as much research as I can and can't figure out my issue, if anyone could help me out.
Basically have a api set up leading to a json doc and something seems to be hanging up the ...
2
votes
3answers
116 views
Problem with getJSON response
I have some problem with $.getJSON response in Chrome
The query is
$.getJSON("http://www.askgeo.com/api/428014/sf2t36ujv1tsf325t5734gstr4/timezone.json?callback=?&points=55.77184,37.623553",
...
2
votes
1answer
34 views
lexically scoped variable retains value after being overwritten in a getJSON call
In the code at the end of this post, the variable pPrice is defined via
$(addProduct).attr(attrProductPrice); and then set in a JSON call via
$.getJSON(url, function(data) { console.log(data); pPrice ...
2
votes
2answers
48 views
How to replace data by a variable in .$getJSON method
Quick question:
How can I replace data by a variable?
$.getJSON('getdata.php', {data: 'hello'}, function(jsonResult) {
Just to be clear, i do not mean 'hello'
2
votes
3answers
115 views
jQuery getJSON data order varies across browsers
JSON data:
{"2":"Alpha","1":"Beta"}
The data format is fixed, i.e. I can't change it, I can only amend the javascript/jQuery code.
$.getJSON("www.myurl.com", function(data) {
var ...
2
votes
2answers
80 views
jQuery getJSON: getting clicked 'this' from several levels down
Summary: Trying to reference clicked "this" from several calls deep.
Hi All,
I have a situation where I have a set of buttons (Button 1 - 6) in the form of an unordered list. When one of the ...
2
votes
1answer
85 views
2
votes
1answer
117 views
Intent.putExtra vs. getJSONObject - Android
I have a question regarding the performance of an application.
I have an object in an external database and I have already extracted all the data about it from the database, including unique id. I ...
2
votes
2answers
383 views
jQuery getJSON doesnt send cookies
i am including JS on domain1 form domain2
<script type="text/javascript" src="http://www.domain2.com/script.js"></script>
that script doesn onload and on button click a JSONP request to ...
2
votes
3answers
273 views
How to store JSON data into JavaScript table format?
I am developing a web application and I use jQuery 1.5 and JavaScript for the main functionality of the app. I connect from my app to a RESTful interface where I GET information for a person.
I use ...
2
votes
3answers
158 views
How can I get javascript to read from a .json file?
My script currently looks like this:
<script type="text/javascript">
function updateMe(){
var x = 0;
var jsonstr = '{"date":"July 4th", "event":"Independence Day"}';
var ...
2
votes
1answer
1k views
JSON for jqPlot
I would like to use jqPlot usinge data from server side coming in JSON, like described in this example: http://www.jqplot.com/tests/data-renderers.php
My code is nearly the same like the example:
...
2
votes
1answer
741 views
jquery grep on json object array
Im trying to use grep to filter a json object array so that the array is searched and if the value of any of keys #2-6 are yes, the value of keys 1 and 7 are returned.
The array is below -- in other ...
2
votes
3answers
156 views
How do I protect against getJSON not calling the callback?
Before submitting a form button, I make a $.getJSON call that validates some of the data, and when it comes back, it either displays a "you didn't fill out this form correctly" dialog or it does the ...
2
votes
3answers
176 views
jQuery getJSON basics
My first attempt at it, and the testing function does not seem to work:
$.getJSON('questions.json', function(data) {alert(data);})
I am trying to alert all the contents of the JSON file which is ...
2
votes
2answers
572 views
Changed from JQuery 1.4 to 1.5.1 and getJson stopped working
Today on a website I was working on I changed the version of jQuery from 1.4 to 1.5.1, however this caused a function which relies on the getJson function to stop working, I have looked at the API and ...
2
votes
2answers
2k views
jQuery .getJSON return into array variable & json array manipulation
is there any way I can get the return of $.getJSON into a variable array?
I know its async and out of scope, but I will use it inside ajax callback, I just need to get all the values first and check ...
2
votes
2answers
271 views
Unable to retrieve json data using jquery
i am a newbie and am stuck at retrieving json data.
following is my index.php :
<script type="text/javascript" src="jquery-1.3.2.min_2.js">
$("document").ready(function() {
...
2
votes
4answers
387 views
callback function parsing JSON in JQuery
I'm new to JQuery and maybe this is a n00b question. And also my English is not the best.
I wrote a service in my Google App Engine application who delivers data in JSON format, which works OK, but I ...