AJAX (Asynchronous JavaScript and XML) is a technique for creating seamless interactive websites via asynchronous data exchange between client and server. AJAX facilitates communication with the server or partial page updates without a traditional page refresh.

learn more… | top users | synonyms (1)

720
votes
30answers
207k views

How to format a JSON date?

I'm taking my first crack at Ajax with jQuery. I'm getting my data onto my page, but I'm having some trouble with the JSON data that is returned for Date data types. Basically, I'm getting a string ...
702
votes
22answers
98k views

Is Safari on iOS 6 caching $.ajax results?

Since the upgrade to iOS 6, we are seeing Safari's web view take the liberty of caching $.ajax calls. This is in the context of a PhoneGap application so it is using the Safari WebView. Our $.ajax ...
629
votes
4answers
80k views

Why does Google prepend while(1); to their JSON responses?

This is something I've always been curious about, is exactly why Google prepends while(1); to their (private) JSON responses. For example, here's a response while turning a calendar on and off in ...
613
votes
18answers
378k views

How can I upload files asynchronously with jQuery?

I would like to upload a file asynchronously with JQuery. This is my HTML: <span>File</span> <input type="file" id="file" name="file" size="10"/> <input id="uploadbutton" ...
448
votes
6answers
120k views

Abort Ajax requests using jQuery

Using jQuery, how can I cancel/abort an Ajax request that I have not yet received the response from?
348
votes
23answers
216k views

How to manage a redirect request after a jQuery Ajax call

Im using $.post() to call a Servlet using Ajax and then use the resulting HTML fragment to replace a div element in the User's current page. However, if the session timeouts the server sends a ...
276
votes
7answers
74k views

Are the PUT, DELETE, HEAD, etc methods available in most web browsers?

I've seen a couple questions around here like How to debug RESTful services, which mentions: Unfortunately that same browser won't allow me to test HTTP PUT, DELETE, and to a certain degree even ...
252
votes
13answers
157k views

What is the best back button jQuery plugin?

I have found two plugins that enable the browser's back button to work across ajax interactions, but I can't determine which is better and why. The two plugins are history_remote and the history. ...
231
votes
7answers
142k views

How can I get jQuery to perform a synchronous, rather than asynchronous, AJAX request?

I have a javascript widget which provides standard extension points. One of them is the beforecreate function. It should return false to prevent an item from being created. I've added an AJAX call ...
204
votes
12answers
132k views

On - window.location.hash - change?

I am using Ajax and hash for navigation. Is there a way to check if the window.location.hash changed like this? http://example.com/blah#123 to http://example.com/blah#456 It works if I check it when ...
169
votes
12answers
98k views

How do I send a cross-domain POST request via JavaScript?

How do I send a cross-domain POST request via JavaScript? Notes - it shouldn't refresh the page, and I need to grab and parse the response afterward. Your help with some code examples will be much ...
165
votes
8answers
50k views

How many concurrent AJAX (XmlHttpRequest) requests are allowed in popular browsers?

In Firefox 3, the answer is 6 per domain: as soon as a 7th XmlHttpRequest (on any tab) to the same domain is fired, it is queued until one of the other 6 finish. What are the numbers for the other ...
158
votes
9answers
167k views

Safely turning a JSON string into an object

Given a string of JSON data, how can you safely turn that string into a JavaScript object? Obviously you can do this unsafely with something like... var obj = eval("(" + json + ')'); ...but that ...
154
votes
17answers
135k views

jQuery $.ajax(), $.post sending “OPTIONS” as REQUEST_METHOD in Firefox

Having trouble with what I thought was a relatively simple jQuery plugin... The plugin should fetch data from a php script via ajax to add options to a <select>. The ajax request is pretty ...
152
votes
5answers
267k views

jQuery get textarea text

Recently I have started playing with jQuery, and have been following a couple of tutorials. Now I feel slightly competent with using it (it's pretty easy), and I thought it would be cool if I were ...
145
votes
20answers
23k views

Biggest GWT Pitfalls?

I'm at the beginning/middle of a project that we chose to implement using GWT. Has anyone encountered any major pitfalls in using GWT (and GWT-EXT) that were unable to be overcome? How about from a ...
143
votes
2answers
37k views

In MVC, how do I return a string result?

In my ajax call, I want to return a string value back to the calling page. Should I use ActionResult or just return a string?
126
votes
19answers
88k views

How do I test for an empty Javascript object from JSON?

After an AJAX request, sometimes my application may return an empty object, like: var a = ({}); How can I check whether that's the case?
123
votes
5answers
33k views

What does a Ajax call response like 'for (;;); { json data }' mean? [duplicate]

Possible Duplicate: Why do people put code like “throw 1; <dont be evil>” and “for(;;);” in front of json responses? I found this kind of syntax being used on ...
114
votes
11answers
71k views

Stop jQuery .load response from being cached

I have the following code making a GET request on a URL: $('#searchButton').click(function() { $('#inquiry').load('/portal/?f=searchBilling&pid=' + $('#query').val()); }); But ...
114
votes
1answer
41k views

Updating address bar with new URL without hash or reloading the page

I either dreamt about chrome (dev channel) implementing a way to update the address bar via javascript (the path, not domain) without reloading the page or they really have done this... However...I ...
112
votes
9answers
47k views

JavaScript implementation of Gzip

I'm writing a Web application that needs to store JSON data in a small, fixed-size server-side cache via AJAX (think: Opensocial quotas). I do not have control over the server. I need to reduce the ...
111
votes
4answers
90k views

Scroll to bottom of div?

I am creating an ajax chat in rails and I am trying to get a div to scroll to the bottom without much luck. I am wrapping everything in this div: #scroll { height:400px; overflow:scroll; } ...
110
votes
7answers
93k views

ASP.NET MVC controller actions that return JSON or partial html

I am trying to create controller actions which will return either JSON or partial html depending upon a parameter. What is the best way to get the result returned to an MVC page asynchronously?
109
votes
12answers
5k views

Why is it a bad practice to return generated HTML instead of JSON? Or is it?

It is quite easy to load HTML content from your custom URLs/Web services using JQuery or any other similar framework. I've used this approach many times and till now and found the performance ...
108
votes
10answers
45k views

Modify Address Bar URL in AJAX App to Match Current State

I'm writing an AJAX app, but as the user moves through the app, I'd like the URL in the address bar to update despite the lack of page reloads. Basically, I'd like for them to be able to bookmark at ...
104
votes
3answers
29k views

KnockoutJS: ko.applyBindings to partial view?

I'm using Knockout JS and have a main view and view model. I want a dialog (the jquery UI one) to popup with another view which a separate child view model to be bound to. The HTML for the dialog ...
103
votes
5answers
18k 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 ...
101
votes
14answers
21k views

Dynamically adding a form to a Django formset with Ajax

I'd like to be able to automatically add new forms to a Django formset with an ajax function. I.e., the user clicks an "add" button and some javascript will add a new form (which is part of the ...
97
votes
7answers
204k views

How to generate a simple popup using jQuery

I am designing a web page. In that, when we click the content of div named mail, how can I show a popup window containing a label email and text box? I searched in Google for a simple popup in ...
94
votes
9answers
23k views

How do HttpOnly cookies work with AJAX requests?

JavaScript needs access to cookies if AJAX is used on a site with access restrictions based on cookies. Will HttpOnly cookies work on an AJAX site? Edit: Microsoft created a way to prevent XSS ...
91
votes
12answers
61k views

JQuery pass more parameters into callback

Is there a way to pass more data into a callback function in Jquery? I have two functions and I want the callback to the $.post, for example, to pass in both the resulting data of the AJAX call, as ...
88
votes
11answers
50k views

What's a good AJAX Autocomplete Plugin for jQuery?

I usually use jQuery as my JS library on my sites, and I would like to stick with it since I'm familiar with it. I need to implement an AJAX autocomplete, mainly for suggesting search results. Here ...
87
votes
6answers
148k views

jQuery AJAX submit form

I have a form with name orderproductForm and an undefined number of inputs. I want to do some kind of jQuery.get or ajax or anything like that that would call a page through Ajax, and send along all ...
83
votes
4answers
69k views

jQuery Call to WebService returns “No Transport” error

I have the following web service; [WebMethod] public string HelloWorld() { return "Hello World"; } It's stock standard with no alterations to the class decorators. I have ...
83
votes
5answers
67k views

Chrome: Disable same origin policy

Is there a way to disable the same origin policy on Google's Chrome browser? This is strictly for development, not production, use.
82
votes
7answers
17k views

Unexpected Caching of AJAX results in IE8

I'm having a serious issue with Internet Explorer caching results from a JQuery Ajax request. I have header on my web page that gets updated every time a user navigates to a new page. Once the page ...
82
votes
5answers
6k views

Why do people put code like “throw 1; <dont be evil>” and “for(;;);” in front of json responses? [duplicate]

Possible Duplicate: Why have “while(1);” in XmlHttpRequest response? Why does Google prepend while(1); to their JSON responses? Google returns json like this: throw 1; <dont be ...
81
votes
10answers
31k views

What is the best AJAX library for Django?

Which and why is the best AJAX library for django? Which one has the biggest database of tutorials, books and most detailed documentation? Which one is the easiest to work with? Which one is in ...
80
votes
11answers
124k views

JQuery ajax cross domain

I am fed up with this problem. Here is two pages, test.php and servertest.php. test.php <script src="scripts/jq.js" type="text/javascript"></script> <script> ...
78
votes
9answers
106k views

Origin is not allowed by Access-Control-Allow-Origin

I'm making a Ajax.request to a remote PHP server in a Sencha Touch 2 application (wrapped in phonegap). The response from the server is the following: XMLHttpRequest cannot load ...
75
votes
5answers
30k views

Request Monitoring in Chrome

In Firefox, I use Firebug which allows me to view every http request my ajax calls are making. I've switched over my development to Chrome and am liking it so far. My only complaint, however, is ...
73
votes
2answers
212k views

jQuery AJAX POST example

I am trying to send data from a form to a database. Here is the form I am using: <form name="foo" action="form.php" method="POST" id="foo"> <label for="bar">A bar</label> ...
72
votes
5answers
10k views

Why does Internet Explorer not send HTTP post body on Ajax call after failure?

We are able to reliably recreate the following scenario: Create a small HTML page that makes AJAX requests to a server (using HTTP POST) Disconnect from the network and reconnect Monitor the packets ...
71
votes
13answers
46k views

Wait until all jquery ajax request are done?

How do I make a function wait until all jquery ajax requests are done inside another function? In short, I need to wait for all ajax requests to be done before i execute the next. But how?
71
votes
12answers
2k views

Update the CSS of a Website without refreshing the Page

I create a page with CSS. so i must change from my editor to my browser and must refresh the full page to have a look at every little change. but I do not want to refresh the page, because I have some ...
69
votes
6answers
21k views

Will HTML5 allow web apps to make peer-to-peer HTTP connections?

Is it possible to create a web app that, with the help of a central server, could create direct connections with other users of the same web app? I'm imagining a process similar to UDP hole punching. ...
69
votes
2answers
26k views

GUI-based or Web-based JSON editor that works like property explorer [closed]

Background: This is a request for something that may not exist yet, but I've been meaning to build one for a long time. First I will ask if anyone has seen anything like it yet. Suppose you have an ...
68
votes
19answers
18k views

Is there some way to PUSH data from web server to browser?

Of course I am aware of Ajax, but the problem with Ajax is that the browser should poll the server frequently to find whether there is new data. This increases server load. Is there any better method ...
67
votes
1answer
4k views

How to return the response from an AJAX call?

I have a function foo with makes an AJAX request. How can I return the response from foo? I tried to return the value from the success callback as well as assigning the response to a local variable ...

1 2 3 4 5 1256