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.
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 ...
613
votes
18answers
377k 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" ...
55
votes
5answers
27k views
How to use Servlets and Ajax?
I'm very new to web apps and Servlets and I have the following question:
Whenever I print something inside the servlet and call it by the webbrowser, it returns a new page containing that text. Is ...
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 ...
79
votes
11answers
123k 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>
...
59
votes
7answers
126k views
jQuery Ajax File Upload
Can I use this following jQuery code to perform file upload using post method of Ajax request ?
$.ajax({
type: "POST",
timeout: 50000,
url: url,
data: dataString,
success: ...
720
votes
30answers
206k 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 ...
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 ...
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 ...
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 ...
72
votes
2answers
211k 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>
...
112
votes
9answers
46k 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 ...
45
votes
6answers
62k views
jQuery: Return data after ajax call success
i have somethign like this, where is a simple call to a script that gives me back a value, a string..
function testAjax() {
$.ajax({
url:"getvalue.php",
success:function(data) {
...
7
votes
2answers
17k views
How to return AJAX response Text?
I use prototype to do my AJAX development, and I use the code like this:
somefunction: function(){
var result = "";
myAjax = new Ajax.Request(postUrl, {
method: 'post',
...
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 ...
252
votes
13answers
156k 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.
...
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 ...
12
votes
4answers
13k views
How to reference components in JSF ajax? Cannot find component with identifier “foo” in view
The following code is inspired from Primefaces' DataGrid + DataTable Tutorials and put into a p:tab of a p:tabView residing in a p:layoutUnit of a p:layout.
The code stops working and gives the ...
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.
46
votes
1answer
28k views
jsonp with jquery
Can you give a very simple example of reading a jsonp request with jquery? I just can't get it to work.
0
votes
1answer
293 views
Variable doesn't get returned from AJAX function
As my framework grows i decided to split it into files, instead of leaving it in the main design file. However by doing that the return of a function doesn't return any value.
data isn't empty - if i ...
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 ...
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 ...
54
votes
5answers
27k views
Post data to JsonP
Is it possible to post data to JsonP? Or does all data have to be passed in the querystring as a GET request?
I have alot of data that I need to send to the service, cross domain, and it is too large ...
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 ...
4
votes
1answer
695 views
Why do I need to nest a component with rendered=“#{some}” in another component when I want to ajax-update it?
So I've found a few answers close to this, and I've found enough to fix the problem I had. But even so, I'm curious as to understand the workings around this. Let me illustrate with an example :
I ...
9
votes
9answers
24k views
Ajax cross domain call
I know about ajax cross-domain policy.
So I can't just call "http://www.google.com" over a ajax HTTP request and display
the results somewhere on my site.
I tried it with dataType "jsonp", that ...
156
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 ...
29
votes
6answers
44k views
Problems with jQuery getJSON using local files in Chrome
I have a very simple test page that uses XHR requests with jQuery's $.getJSON and $.ajax methods. The same page works in some situations and not in others. Specificially, it doesn't work in Chrome on ...
37
votes
10answers
86k views
jQuery .load() call doesn't execute javascript in loaded html file
This seems to be a problem related to Safari only. I've tried 4 on mac and 3 on windows and am still having no luck.
What I'm trying to do is load an external html file and have the Javascript that ...
81
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 ...
49
votes
7answers
100k 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 ...
65
votes
13answers
43k views
Prevent caching of AJAX call
It looks like that if I load dynamic content using $.get(), the result is cached in browser.
Adding some random string in QueryString seem to solve this issue (I use new Date().toString()), but this ...
97
votes
6answers
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 ...
154
votes
17answers
134k 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 ...
87
votes
6answers
147k 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 ...
36
votes
12answers
61k views
Detecting Back Button/Hash Change in URL
I just set up my new homepage at http://ritter.vg. I'm using jQuery, but very minimally.
It loads all the pages using AJAX - I have it set up to allow bookmarking by detecting the hash in the URL.
...
21
votes
8answers
70k views
using jquery $.ajax to call a PHP function
This may be a simple answer, but I'm using jquery's $.ajax to call a PHP script. What i want to do is basically put that PHP script inside a function and call the PHP function from javascript.
...
65
votes
7answers
29k views
jQuery ajax (jsonp) ignores a timeout and doesn't fire the error event
Hey fellow jQuery lovers,
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 ...
78
votes
9answers
105k 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 ...
37
votes
8answers
22k views
Django CSRF check failing with an Ajax POST request
I could use some help complying with Django's csrf protection mechanism via my AJAX post. I've followed the directions here:
http://docs.djangoproject.com/en/dev/ref/contrib/csrf/
I've copied the ...
111
votes
4answers
89k 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;
}
...
24
votes
7answers
7k views
How to show Ajax requests in URL?
What I want is to have links which change a part of the page , and a dynamic URL for it, where I can specify variables such like #calendar=10_2010tabview=tab2
Check this for an exact example: CLICK ...
5
votes
2answers
3k views
When to use valueChangeListener or f:ajax listener?
What's the difference between the following two pieces of code - with regards to listener placement?
<h:selectOneMenu ...>
<f:selectItems ... />
<f:ajax ...
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?
60
votes
16answers
40k views
JavaScript: How to detect that the Internet connection is offline?
How to detect that the Internet connection is offline in JavaScript?
37
votes
6answers
41k views
How to use Basic Auth and Jquery and Ajax
I am trying to create a basic auth through browser, but I can't really get there.
If this script won't be here the browser auth will take over, but I want to tell the browser that the user is about ...
17
votes
3answers
6k views
How can I populate a text field using primefaces ajax after validation errors occur?
I have a form in a view which performs ajax partial processing for autocompletion and gmap localization. My backing bean instantiates an entity object "Address" and is to this object that the form's ...


