AJAX (Asynchronous Javascript And XML) is a popular technique for creating interactive websites, though other technologies (e.g. JSON) are often used instead of XML.
283
votes
25answers
94k 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 ...
188
votes
17answers
150k 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" ...
153
votes
4answers
51k views
Kill Ajax requests using JavaScript using jQuery
Using jQuery, how do I cancel an Ajax request that I have not yet received the response from?
143
votes
18answers
115k 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 ...
122
votes
8answers
32k 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 ...
111
votes
19answers
19k 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 ...
95
votes
5answers
30k views
What does a Ajax call response like 'for (;;); { json data }' mean?
I found this kind of syntax being used on Facebook for Ajax calls. I'm confused on the for (;;); part in the beginning of response. What is it used for?
This is the call and response:
GET ...
90
votes
10answers
16k views
Ways to circumvent the same-origin policy
The same origin policy
I wanted to make a community wiki regarding HTML/JS same-origin policies to hopefully help anyone searching for this topic. This is one of the most searched-for topics on SO ...
80
votes
12answers
57k 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 ...
79
votes
4answers
11k 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 ...
76
votes
16answers
69k 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 ...
75
votes
7answers
22k 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 ...
66
votes
9answers
2k 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 ...
64
votes
5answers
145k 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 ...
64
votes
9answers
12k 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 ...
63
votes
10answers
23k 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 ...
63
votes
11answers
30k 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 ...
62
votes
9answers
36k 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 ...
58
votes
10answers
23k 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 ...
55
votes
2answers
10k 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.
Do I still using ActionResult or just return a string?
54
votes
13answers
12k 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 ...
53
votes
11answers
33k 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 ...
52
votes
4answers
13k views
What exactly can cause an “HIERARCHY_REQUEST_ERR: DOM Exception 3”-Error?
And how exactly does it relate to jquery? I know the library uses native javascript functions internally, but what exactly is it trying to do whenever such a problem appears?
Thx for any response in ...
52
votes
8answers
56k 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 ...
51
votes
5answers
3k 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 ...
51
votes
6answers
37k 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?
49
votes
4answers
2k views
How does facebook rewrite the source URL of a page in the browser address bar?
Go to http://www.facebook.com/facebook?v=wall, then click on the info tab. The content will be loaded, and the address bar now becomes http://www.facebook.com/facebook?v=info but the webpage didn't ...
47
votes
9answers
30k views
Drag-and-drop file upload in Google Chrome/Chromium and Safari?
Drag-and-drop file uploading can be done in Firefox 3.6.
A Google search for html5 drag-and-drop file uploading -gmail gives things like:
Native Drag + Drop file upload in Firefox 3.6
...
45
votes
5answers
116k 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 ...
43
votes
3answers
2k views
Why does jquery leak memory so badly?
This is kind of a follow-up to a question I posted last week:
http://stackoverflow.com/questions/2429056/simple-jquery-ajax-call-leaks-memory-in-ie
I love the jquery syntax and all of its nice ...
41
votes
5answers
2k views
Why do people put code like “throw 1; <dont be evil>” and “for(;;);” in front of json responses?
Google returns json like this:
throw 1; <dont be evil> { foo: bar}
and Facebooks ajax has json like this:
for(;;); {"error":0,"errorSummary": ""}
Why do they put code that would stop
...
40
votes
11answers
2k views
Is there any reason to use a synchronous XMLHttpRequest?
It seems most everyone does asynchronous requests with XMLHttpRequest but obviously the fact that there is the ability to do synchronous requests indicates there might be a valid reason to do so. So ...
40
votes
7answers
10k views
Will HTML5 allow web apps to make peer-to-peer HTTP connections?
This is probably a dumb question, but I have to ask it anyway. I'd like to know if it is at all possible to create a web app that, with the help of a central server, could create direct connections ...
40
votes
9answers
26k 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 ...
39
votes
9answers
21k views
ASP.NET MVC Ajax.ActionLink with Image
is there anyway to have an image act as an ajax actionlink? I can only get it to work using text. Thanks for your help!
39
votes
19answers
9k 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 ...
37
votes
2answers
7k 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 ...
36
votes
10answers
17k 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 ...
36
votes
2answers
8k views
Prevent redirection of Xmlhttprequest
Is it possible to prevent the browser from following redirects when sending XMLHttpRequest-s (i.e. to get the redirect status code back and handle it myself)?
34
votes
7answers
8k views
Unexpected Caching of AJAX results in IE8
I'm having a serious issue with Internet Explorer cachings results from a JQuery Ajax request.
I have header on my web page that get's updated everytime a users navigates to a new page. Once the page ...
33
votes
7answers
7k views
Simple jQuery Ajax call leaks memory in Internet Explorer
I created a web page that makes an Ajax call every second. In Internet Explorer 7, it leaks memory badly (20 MB in about 15 minutes).
The program is very simple. It just runs a JavaScript function ...
33
votes
5answers
15k views
jQuery ajax (jsonp) ignores a timeout and doesn't fire the error event
To add some basic error handling, I wanted to rewrite a piece of code that used jQuery's $.getJSON to pull in some photo's from Flickr. The reason for doing this is that $.getJSON doesn't provide ...
33
votes
3answers
26k 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;
}
...
33
votes
16answers
67k views
jQuery won't parse my JSON from AJAX query
I'm having difficulty parsing some JSON data returned from my server using jQuery.ajax()
To perform the AJAX I'm using:
$.ajax({
url: myUrl,
cache: false,
dataType: "json",
success: ...
32
votes
3answers
6k views
How is GMail Chat able to make AJAX requests without client interaction?
All HTTP responses require the client to initiate them, even those made using AJAX. But GMail's chat feature is able to receive messages from other users, even when I'm just sitting in my comfy ...
32
votes
15answers
27k 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?
32
votes
17answers
20k views
JavaScript: How to detect that the Internet connection is offline?
How to detect that the Internet connection is offline in JavaScript?
31
votes
4answers
3k views
What happened to Dojo in 2008?
Many of you have seen this graph of Google Trends of popular AJAX frameworks (Dojo, jQuery, YUI).
The graph seems to make it clear that interest in Dojo collapsed in the second quarter of 2008, ...
31
votes
2answers
1k views
What is the right pattern for using JQuery Ajax and ASP.Net Mvc?
I'm very new to both the Mvc framework as well as JavaScript and JQuery. I'm trying to understand the right way to structure Ajax calls.
Let's say I have a "Vote Up" button similar to what you see on ...
31
votes
5answers
59k views
Rotating a Div Element in jQuery
Trying to rotate a div element...This might be DOM blasphemy, could it work possibly with a canvas element? I'm not sure - if anybody has any ideas of how this could work or why it doesn't, I'd love ...