The ajaxSetup() method sets default values for future AJAX requests.
3
votes
1answer
1k views
How to set cache false for getJSON in JQuery?
I am using getJSON to fetch the results from server side but facing browser cache problems. I want the cache to be false. I tried using this just before my getJSON call.
$.ajaxSetup({
...
2
votes
1answer
122 views
Cache busting a local browser cache but ensuring response from Azure CDN and not from origin server (Web Role)
I am trying to make a HEAD request to an item on Azure CDN (production site) but want to avoid the response coming from either my local browser cache, nor from the origin server (my web role). This ...
3
votes
1answer
104 views
Limit jQuery.ajaxSetup scope to inside a specific object only
This might be strange, but what I am looking for is how would I make the scope of jQuery.ajaxSetup() inside a specific object only. Let me give you an example, I have two objects obj_1 and obj_2. I ...
0
votes
2answers
151 views
How do I show a Google Maps-esque slow AJAX request warning?
I'm currently using ajaxStart, ajaxStop and ajaxSetups to successfully show a "LOADING" div when pages are being loaded using jQuery's .load() function.
What I'd like to do is add a "This is taking ...
0
votes
1answer
107 views
Get Referenced Element in jQuery $.ajaxSetup
I am building a framework and I want to write some generic functions for buttons when they are clicked before and after an ajax call is made.
My problem is how do I reference to the actual element ...
0
votes
0answers
163 views
jQuery ajaxSetup cross-browser error-handling issue
Why does this jQuery ajaxSetup work on Chrome but not on IE and Firefox?
I'm using jQuery 1.4.2, by the way.
Thanks in advance.
$(document).ready( function() {
$.ajaxSetup({
complete: ...
1
vote
1answer
878 views
jQuery ajax success event Strangely not working on ajaxSetup. I read all other questions
I read all these questions:
Ajax success event not working
AjaxSetup never execute the success function
Does jQuery ajaxSetup method not work with $.get or $.post?
$.ajax function's success: not ...
4
votes
2answers
3k views
jQuery.ajaxSetup: override error with statusCode
I have the following code for default jQuery AJAX error handling:
$.ajaxSetup({
error : function(jqXHR, textStatus, errorThrown) {
alert("Error: " + textStatus + ": " + errorThrown);
...
1
vote
2answers
193 views
ajaxSend bind and then 2 async $.get requests .
I have a simple page, with binding ajaxSend event. When it fires a new class "ajax-loading" appends to a specific element. And second bind is for ajaxComplete, when it fires, a class "ajax-loading" ...
3
votes
1answer
191 views
How to send the mouse event to the ajaxSetup beforeSend?
I have few buttons that call Ajax functions (submit contact form, submit newsletter, check if user is valid/already registered, check user status etc...)
I use the ajaxSetup to show a Loading Dialog ...
7
votes
4answers
1k views
AjaxSetup never execute the success function
I have a simple registration page that validates if a user is already taken.
I use ajaxSetup for all my ajax calls and for some reason the "success" is never called. When I look at my console ...
2
votes
5answers
5k views
How to call a jQuery function after ANY successful Ajax request with MVC partial views
I have jQuery code that runs fine when a view is render. However, I want this same code to run after an Ajax request is successful. The jQuery was originally performed when the document was ready, ...
9
votes
2answers
3k views
jQuery's ajaxSetup - I would like to add default data for GET requests only
In a ajax-driven site I have added some default data using the ajaxSetup, ala this:
var revision = '159';
$.ajaxSetup({
dataType: "text json",
contentType: "application/x-www-form-urlencoded; ...
1
vote
2answers
441 views
How do I add parameters to every ajax request?
I'm developing a single page web-application using dojo and Java EE.
simplified architecture
The client scripts exchange data with the backend using the dojox.data.JsonRestStore.
I want to atach ...
2
votes
1answer
78 views
Is there a way to set the context of ajax callbacks to always be the the scope of whatever called the ajax function?
is there a way to do this? I can set it for one ajax call using the ajax option: {context: this}, but how would I do it so that I can set it up in $.ajaxSetup? Thx!
1
vote
2answers
166 views
Jquery form plugin is ignoring ajaxSetup settings
I am trying to use $.ajaxSetup() to set global data to be sent in every ajax request.
According to here, what I am trying should works fine.
However, some of the ajax calls in my app are forms ...
3
votes
2answers
2k views
When to use .then, .done, .fail [closed]
If I limit myself to the .ajax method (and NOT to the shortcuts like .get and .load), then should I use the deferred object methods
.then, .done, .fail, .when, .reject, .resolve, .always, .promise
...
4
votes
5answers
2k views
Setting async: false with jQuery?
Is there any difference between setting:
$.ajax({
type: "POST",
traditional: true,
url: '/adminTask/doAction',
async: false, <<<<<<<<<<<<<< ...
1
vote
1answer
436 views
Inline text change not updating on ajax request (but changes on DB)
I'm using a script I found for changing a line of text on the go (you click on it and an input shows). It works fine without doing anything to the database but when I add my code for an update, it ...
1
vote
2answers
755 views
How do I use jquery ajax to retrieve a json object and refresh this object every n seconds [closed]
Restful Service (from Server)
@GET
@Produces("application/json")
@Consumes("application/json")
@Path("/getStatus/")
// server:8080/server/rest/admin/status/whatSoEver
public void ...
6
votes
3answers
855 views
Syncronous JQuery.post()
Hey all, I'm writing a little script that makes individual AJAX calls through a loop and I came across a, most likely obvious, problem. It seems that the loop is going to fast to handle the data that ...
0
votes
1answer
338 views
jQuery $.ajaxSetup Question: What is the purpose of overriding the “xhr” property?
I could not find any answers about this via Google, so thought I can ask here:
For the jQuery $.ajaxSetup function, what is the purpose of overriding the xhr property? I see that in the ...
4
votes
3answers
380 views
Detect if and when any jQuery AJAX calls are made
I have a toolbar that exists on all my webpages that makes requests to a server side XML file regularly.
Some of the web pages also make requests to the same XML file, but more frequently. Ideally I ...
0
votes
1answer
1k views
jQuery.getJSON works in Safari, not Firefox
This jQuery.getJSON works for me in Safari, but not FF or Chrome. In Safari, I get alerts with json name/value pairs. In FF/Chrome. I get the 3 error alerts (all returning empty strings). Any ideas ...
2
votes
1answer
3k views
jQuery ajaxSetup beforeSend not executing in IE8
My project uses jQuery 1.4.2.
I've got some security information that I add to my AJAX headers...
The way I'm doing this is by using $.ajaxSetup(), and setting a beforeSend function.
...
0
votes
1answer
198 views
AJAX to dynamically fetch data from a file not working
I'm Using AJAX to dynamically fetch data from my php page and display it on a html page. Its not working. Here is the link to the page
HTML Page where the call is made and result should be displayed
...
1
vote
1answer
243 views
Post data being overriden since upgrading from jQuery 1.4 to 1.5
Since upgrading to the lastest version of jQuery from 1.4, my ajax posts no longer allow ?? (double question marks). Instead they are replaced with something like ...
2
votes
0answers
2k views
jquery $.ajaxSetup({ cache: false }); doesnt seem to be working in IE8?
I am using $.ajaxSetup({ cache: false }); but it doesnt seem to be working in IE8? I am making a number of get/post ajax calls on a page. If I leave the page and come back, it seems as if my Ajax ...
5
votes
1answer
5k views
jquery ajax ignores 500 status error
I'm making some GET requests to an App Engine app, testing in Chrome. Whilst I can see in javascript console that some calls result in a 500 server error, I can't seem to find anyway of capturing this ...
4
votes
3answers
8k views
jQuery: handle errors in getJSON()?
How do I handle 500 errors when using jQuery's getJSON?
There have been a couple of questions about error handling with getJSON() and JSONP, but I'm not working with JSONP, just ordinary JSON.
...
1
vote
1answer
791 views
jQuery ajax problem in firefox
I have this code:
var ajaxLoader = $('.ajaxLoader', lpWindow);
$.ajaxSetup({
url: 'http://www.server.foo/setMessage.php',
type: 'POST',
data: {
text: message,
...
2
votes
1answer
646 views
Ajax Setup questions
I have 2 questions.
Is it bad to have multiple AjaxSetups? Say I have 2 pages. One page need 5 options set and the other page needs 7(5 of them are the same as the first page). Could I just have 2 ...
0
votes
4answers
379 views
Jquery .each loop
I'm totally new to jquery but I have a .each loop that fetches some data using ajax and then updates list elements. Right now the .each loop does all list elements at the same time... I need it to do ...
1
vote
1answer
173 views
Is there anything glaringly wrong with my .ajaxSetup jquery call?
I am trying to debug some code and get to the bottom of the error.
Is there anything wrong with this:
$.ajaxSetup({
beforeSend: function(xhr) {
xhr.setRequestHeader("Accept", ...
0
votes
2answers
424 views
Can you defer ajax setup in jquery 1.5?
I have something like this
$.ajaxSetup({
cache: false
});
I am wonder can you do ajaxSetup like you can do $.ajax
var jqxhr = $.ajax({ url: "example.php" })
.success(function() { ...
3
votes
3answers
776 views
How to prevent overwriting jQuery's $.ajaxSetup() options?
I've got a question concerning ajaxSetup. When the script starts, I define the following:
$.ajaxSetup({
success: function(data) {
example();
}
});
Up to here everything works fine. The ...
1
vote
1answer
343 views
Conflicting $.ajaxSetup for jQuery functions
I have two jQuery scripts - One for inline form editing and the second is the jQuery autocomplete.
The autocomplete has the following ajaxSetup:
$.ajaxSetup({
url: '/notes/inlineedit',
type: ...
0
votes
2answers
1k views
Can I use $.ajaxSetup() to enforce utf-8 character encoding on a (non-ajax) form post?
I have a form that I'm posting with the help of jQuery:
<form id="myForm" method="post" action="/processForm">
<input type="text" name="inputs" id="inputs"/>
<button ...
3
votes
5answers
152 views
javascript Semicolon question
I have the following:
$.ajaxSetup({beforeSend:function(a){a.setRequestHeader("Accept","text/javascript")},cache:false});
JSLint is telling me: "Problem at line 1 character 83: Missing semicolon"
...
3
votes
1answer
302 views
tinymce not compatible with jquery ajaxsetup datafilter
I use the following datafilter option on my jquery ajaxsetup:
dataFilter: function(data)
{
var msg;
if (typeof (JSON) !== 'undefined' &&
typeof (JSON.parse) ...
1
vote
3answers
71 views
Is this the Correct place of using this statement in Jquery
This is the statement which I am referering the below code $.ajaxSetup ({ cache: false});
I have a PHP script which produces JSON. I am consuming this json using:
$.getJSON ...
0
votes
2answers
236 views
ignore ajax setup
is there any way of ignoring the options set with $.ajaxSetup for a specific request?
1
vote
1answer
2k views
using ajax beforeSend to modify data
Let's say I have an Ajax call from jQuery like this:
$.ajax({
url: myUrl,
data: myData,
type:'post'
});
I would like to be able to add to the myData using
$.ajaxSetup({
beforeSend: ...
0
votes
1answer
70 views
Is there any way to run first base function that defined in ajaxSetup?
$.ajaxSetup({
success: function onSuccess(msg) {
// add some functions to `msg`
// then return to success method that defined in $.ajax
msg.display = function(){
...
7
votes
3answers
2k views
AJAX error handling with jQuery: should I use $.ajaxSetup() or $.fn.ajaxError()
I want to alert the user whenever there's an AJAX error. You can do this via $.ajaxSetup:
$.ajaxSetup({
error: function() {
alert("OOPS!")
}
});
But the jQuery docs recommend against this:
...
1
vote
4answers
227 views
Jquery .Get() pulls NULL in Internet Explorer
I have a problem with an AJAX call in JQuery. It works on Chrome, FF, and Safari, but not IE. In fact in IE nothing happens at all, no errors, no data loaded.
Here is the code:
...
1
vote
1answer
499 views
When will a browser throw $.ajaxSetup is not a function error
I am trying to insert following snippet in my JSP file
{
$.ajaxSetup({
cache: false,
async: false
});
var ajax_load = "loading data please wait...";
var loadUrl = ...
4
votes
1answer
717 views
What are jQuery best practices regarding Ajax convenience methods and error handling?
Let's suppose, for an example, that I want to partly clone Gmail's interface with jQuery Ajax and implement periodic auto-saving as well as sending. And in particular, let us suppose that I care about ...
9
votes
4answers
281 views
Complex JavaScript. What called me?
Project I'm working on uses jQuery.
I have a series of Ajax calls being made that load() other HTML fragments which in turn load() other fragments. The whole thing is confusing. I didn't write the ...
58
votes
7answers
42k views
Jquery - How to make $.post() use contentType=application/json?
I've noticed that when using $.post() in jquery that the default contentType is application/x-www-form-urlencoded - when my asp.net mvc code needs to have contentType=application/json
(See this ...

