Top "Getjson" questions

Load JSON-encoded data from the server using a GET HTTP request.

How to include JSON data in javascript synchronously without parsing?

I want to load a JSON file from my own server containing an array into a javascript Object variable. I …

javascript json parsing getjson synchronous
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 .…

javascript jquery json ajax getjson
$.getJSON returning cached data in IE8

I'm playing around with ASP.net MVC and JQuery at the moment. I've come across behavour which doesn't seem to …

jquery asp.net-mvc internet-explorer-8 getjson
How do I set the correct json headers?

Is there a way in htaccess to ensure the headers for my json are correct? Update: Does anyone see anything …

json header getjson
How to read json response as name value pairs in JQuery

I want to read json response as name and value pairs in my JQuery code. Here is my sample JSON …

json jquery getjson
C# how to get the JSON string by using HttpWebRequest

Anybody help me to get the JSON from the gitlab site. I have written my code but when I compile …

c# json httpwebrequest getjson gitlab-api
How to get JSON from PHP to JS?

I have really been searching for almost 2 hours and have yet to find a good example on how to pass …

javascript json getjson
Send list/array as parameter with jQuery getJson

I have the following where I'm trying to send list/array to MVC controller method: var id = []; var inStock = []; $table.…

asp.net-mvc jquery parameter-passing getjson url-parameters
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 …

asp.net jquery webforms getjson
How to return a value from a function that calls $.getJSON?

function lookupRemote(searchTerm) { var defaultReturnValue = 1010; var returnValue = defaultReturnValue; $.getJSON(remote, function(data) { if (data != null) { $.each(data.items, function(i, …

javascript jquery return-value getjson