JQuery :: IE Caching AJAX Requests?

May 14, 2009

It looks like IE is caching the response for some AJAX requests here. The app I'm working on is a catalog of sorts. Clicking the link for a category loads a set of "items". Those, in turn, may be deleted from the admin view. The delete works fine (I checked the DB) but, when loading the same set of category items, I'm seeing the list unchanged. That is, the thing that was deleted is still there. Sorry for the crap explanation but I'm not really sure of a better way of putting it. Bottom line is, has anyone seen this sort of behavior with IE before? Can it cache the result of an AJAX request like that? And, if so, how can I guard against that? Can I set cache-control headers for an AJAX request?

View 2 Replies


ADVERTISEMENT

JQuery :: Double Submitted Ajax Requests

Apr 29, 2009

Very intermittently, I am finding ajax requests submitted with jquery are being submitted twice, once with parameters, and once without parameters. The code looks something like this:

[Code]...

View 2 Replies View Related

JQuery :: Launch Two Ajax Requests At Same Time?

Feb 12, 2010

I'm trying to launch two ajax requests at same time. I'm expecting result from the first later than the second. The problem is, it won't return me any result from the second request untill first one is returned.

Check it out :

$.post("sendMail.php");
getSendInfo();
setTimeout(getSendInfo,5000);

[code]....

I'm getting response from the $.getJSON function only when the $.post is over. Is this a bug or a mistake from me ? My aim is to launch a long request and fire multiple other requests to check how is doing the first one.

View 3 Replies View Related

JQuery :: 1.4.2 - AJAX GET Requests Do Not Follow Response Code 302?

Oct 25, 2010

I'm having problems performing a simple load(...) request to bring in HTML content from a partner Oracle system within the same domain. Our portal has a built-in SO connection will handles security for me transparently. However during the process it initiates a 302 temporarily moved response which seems to trip up an AJAX request, but doesn't trip up Firefox when accessed through the address bar. If I use the same URL in an IFRAME it's totally fine.

After tons of googling, searching the forums, and the bug tracker database I cannot find anyone who has experienced this problem. Before I open a bug ticket I'd like community feedback to help me see if I am doing anything wrong.

My AJAX call looks like this in Javascript:

View 7 Replies View Related

JQuery :: Control Large Number Of Ajax Requests?

Mar 26, 2010

I have a element when click, it will trigger some other elements to be selected. and those elements will trigger elements in next level.

It is a three levels hierarchy so to speak. but each element will send an ajax request when selected. Those requests will become out of control especially when I repeatedly click the root element.

Can I queue those XHR request in a queue and send them one by one? or maybe add a delay before send so that they can collect their information into one batch request and send one request after that.

View 2 Replies View Related

JQuery :: IE Does Not Properly Handle Multiple Ajax Requests

May 11, 2011

I have a page that relies on AJAX for content manipulation. Once a person selects a radio button, a request is made through $.getJSON() to get the replacement content. This works in all browsers. Once the new content is loaded, there are 3 more calls to $.getJSON() to change more content (on other tabs in jQuery UI). This works in all browsers except for IE.

I understand this is a Microsoft problem, and not a jQuery problem, but I am wondering if there is a way to manipulate the jQuery calls to get them to work in IE. I did try replacing $.getJSON with $.ajax, and even set async to false. None of those three methods worked in IE. I noticed the problem when my loading div was still displayed in IE. Using Firebug Lite, I saw that only one request was made, rather than four.

View 3 Replies View Related

JQuery :: Uniquely Identifying Ajax Requests / Responses?

Jul 23, 2010

I am developing a fairly complicated application with a lot of JavaScript and making use of JQuery. The application repeatedly makes simultaneous GET requests.

I am looking for a way of assigning a unique token to each request when it is made, so that I can store information about that request and cache the request / response combo, when using $.get() (or potentially $.ajax() if required for the extra functionality).

So far I have not had any joy and after a while googling this am none the wiser. I have used similar functionality in Flex 3 with the AsyncToken object which can maintain data between HTTP request / response.

[Code]...

View 1 Replies View Related

JQuery :: Stop Browser From Caching Dynami HTML Created From AJAX Call

May 12, 2010

I'm not having this issue with Mozilla Firefox, but it seems that the results of the code below are being cached in EI 8. When the browser makes another asynchronous call to the server with different results from the database, those results are not being displaying on the wepage. How do I fix this problem. As I mentioned above the code works fine in Mozilla Firefox. The page displays data in EI 8 with no errors five seconds after the page has loaded, but as the information in the database changes, I'm not seeing those changes reflected on the page in 5 second intervals. I'm assuming this is a caching issue, if so how do I fix it.

[Code]...

View 1 Replies View Related

JQuery :: Display An Activity Loader Automatically With All Ajax Requests?

Jan 29, 2011

I'm working on a php/jQuery application, I want to display a loading image automatically every ajax request, without writing code for every ajax request. Is there anyway to do this.

View 1 Replies View Related

JQuery :: Global Object Created In All IE Browsers When Aborting AJAX Requests

Oct 3, 2011

When a pending ajax request is aborted in IE browsers there is a new global object called "jQuery" + timestamp, for example "jQuery16405272192696596443".

This happens in every IE from 6 to 9 but not in Chrome, Safari, FireFox in their current stable versions. I am a bit lost and found nothing similar. I created a little test page to determine whether it started due to some own code or just in this little piece.

Example HTML:
<!DOCTYPE html>
<html>
<head>

[Code].....

View 1 Replies View Related

JQuery :: Ajax Form Submit - Multiple Post/get Requests Caused When Validation Fails?

May 6, 2010

I have a problem where if a form submission (set up to submit via AJAX) fails validation, the next time the form is submitted, it doubles the number of post requests - which is definitely not what I want to happen. I'm using the jQuery ValidationEngine plugin to submit forms and bind validation messages to my fields. This is my code below. I think my problem is that I need to unbind from the validationEngine plugin when the form fails, but I can't figure out how to do this.

[Code]...

View 1 Replies View Related

Ajax ::prevent Caching Of The File Loaded

Feb 7, 2009

The loaded file normally, an hrml file, they have no scripting code which can't prevent caching. So how can I do so with this kind of file ?

View 4 Replies View Related

Ajax :: How To Stop Browser From Caching Dynamic HTML

May 12, 2010

I'm not having this issue with Mozilla Firefox, but it seems that the results of the code below are being cached in EI 8. When the browser makes another asynchronous call to the server with different results from the database, those results are not being displaying on the wepage. How do I fix this problem. As I mentioned above the code works fine in Mozilla Firefox. The page displays data in EI 8 with no errors five seconds after the page has loaded, but as the information in the database changes, I'm not seeing those changes reflected on the page in 5 second intervals.

<html>
<head>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script>
$(document).ready(
function() {
setInterval ( "reload1()", 5000 );
});

function reload2(){
$.get(
'vcci.php',
function($xml) {
// Make the XML query-able with jQuery
$xml = $($xml);
var $iso2 = $xml.find('data').text();
//alert($iso2);
$('#para').text($iso2);
},
'xml'
);}

</script>
</head>
<body>
<p id="para"></p>
</body></html>

View 1 Replies View Related

Ajax :: Separate The Different Requests On The Page?

Jan 12, 2009

I have this function among many that houses forms. I'm also using an ajax page that is supposed to deal with form's entries and insert everything into my DB and I don't know how to separate the different requests on the ajax page so that it can do what the correct request is.

[Code]...

View 1 Replies View Related

Ajax :: Handling Multiple Requests?

May 15, 2011

This might seem like a silly question..First issue. If i have a response and i'd like to update both text div and a status div how would i go about doing this. I've seen that jQuery has a few options such as OnSuccess etc?

Say that i post a comment and obviously you'd want to update some kinda statusbar on your website with the info that the message was posted successfully with ajax. (otherwise it might slip by the user unnoticed since ajax is kinda discrete)

Would it be a good way to for instance check the responseText if it contains anything and if it does you simply write a successmessage by grabbing a div from JS and if the responseText contains a custom error code lets say 1 you'll update the statusbar with a deny message?

Second thing. I've currently created an Ajax search on my site which activates whenever the user press or unleash the button. The issue is that if the user types fast enough it comes stuck showing the Loading.gif constantly. Could this be due so many requests opening and that i have a sleep on the server-side and if so how would you do it instead? I am using a serversleep of 1 second to have the Ajax pic appear consistently.

[Code]...

View 4 Replies View Related

Ajax :: Sends Multiple Requests

Aug 19, 2011

I have a jsp page using ajax that has a button with an action. The action sends multiple ajax requests. The response from these requests is to be used to update a progress indicator to show the servers current progress. I can see from the debug that I am getting the 1st response. I think it is the way how I have implemented the further requests. I think this is down to my javascript knowledge, which isnt very much. Also I assume using multiple requests in this way is the correct thing to do? I have spent ages trawling the internet trying to get a solution.

View 4 Replies View Related

Ajax :: Multiple Requests At Same Time Not Working

Apr 18, 2011

I'm encountering an AJAX problem when I try to execute multiple AJAX requests at the same time. What I want to do is delete a message and display the status (succes or failure) of that in div1, and refresh the messages on the page in div2. This needs (for as far as my knowledge reaches) two AJAX actions from which I both need the responseText.

The problem:
What happens when I execute my script is that the second action (refresh a part of the page) happens before the deletion is executed. The result of this is that when the deletion has been executed, the page is already updated, and the deleted message is still there.

The script
What I now have is:
function doAjax(url, element_id, img_url){
var ajaxObject = createAjaxObject();
ajaxObject.open('GET', url, true);
ajaxObject.onreadystatechange = function(){
if(ajaxObject.readyState==4 && ajaxObject.status==200){
document.getElementById(element_id).innerHTML = ajaxObject.responseText;
delete ajaxObject; .....

View 3 Replies View Related

Ajax :: Sending Multiple Requests To Server

Mar 18, 2009

I need to send 15 requests to my server and get results, these results are queries to other sites. I then update my page with the results. I need to know if I am taking the correct approach, as things are working a bit slow, and i.e., seems the be as slow as a snail.

Here is my function for the first request
Code:
function one(){
var xmlHttpa=null;
try{
xmlHttpa=new XMLHttpRequest();
} catch (e){
try {
xmlHttpa=new ActiveXObject("Msxml2.XMLHTTP");
} catch (e){
try {
xmlHttpa=new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {
alert("Your browser does not support AJAX!");
return false;
}}}

xmlHttpa.onreadystatechange=function(){
if(xmlHttpa.readyState==4){
document.getElementById('resulta').innerHTML = xmlHttpa.responseText;
var el = document.getElementById('showMessagea');
el.parentNode.removeChild(el);
applystyle();
}}
xmlHttpa.open("GET","one.php",true);
xmlHttpa.send(null);
}

I then call this function and others from my page, one(); two(); etc. Am I correct in my approach?

View 1 Replies View Related

AJAX :: Encrypt Requests And Responses From The Server?

Jul 12, 2011

I need to encrypt my AJAX requests and responses from the server. As the message format I use simple JSON.Can you advise any libraries about it?

View 7 Replies View Related

JQuery :: Autocomplete With Remote And Caching?

Mar 31, 2011

How much data can be cached in the browser? My records seem to be about 70 characters from roughly 7 columns in my database.

View 4 Replies View Related

JQuery :: Browser Caching Textarea Value?

Jul 29, 2010

I have a textarea element, and a link action to empty the textarea.

$('.area').empty();

Normally it works fine. But after a ajax call to send the textarea value, the empty() stops working. I also tried text(), html(), none of them are working. The original text in the textarea still stays there. I have no way changing its value. My guess is firefox caches it or something.

View 10 Replies View Related

JQuery :: Turn Off Caching While Developing?

Aug 25, 2011

I am using vs2010 and when I hit ctr + F5 it launches which ever broswer I select to browse with and tells it not to use the cached version of that web page. But regardless if its chrome, firefox,IE, opera or safari,they all seem tohit a wall and stop recognizing my changes code tweaks. How do I resolve this frustration! It is very trouble some when testing .json file changes and css changes.

View 3 Replies View Related

JQuery :: IFrame Caching In Firefox?

Jun 5, 2009

I am using a jQuery script to insert iframe in the document after thepage load completes as follows:

jQuery(window).load(function() {
var container = jQuery(#container_id);
jQuery(<iframe id=my_iframe

[code]....

View 1 Replies View Related

JQuery :: Parsing And Caching JSON?

Nov 22, 2011

I am working on a web app that pulls content using multiple JSON files. I have tried numerous methods of parsing the JSON, but only the following has worked for me.

$(function() { $(document).ready(function() {
$.getJSON("new.json",function(data) {
$.each(data.posts, function(i,data){ var div_data ='<h4>'+data.title+'</h4><p>'+data.description+'</p>';

[Code].....

Ultimately I would like to somehow store the contents of the JSON files locally and swap out as new content is available. Unfortunately, I don't know how to do that. And possibly a method of using a more current version of jQuery to parse my JSON files?

View 1 Replies View Related

JQuery :: Caching Selectors Inside JS Object?

Sep 26, 2010

I have a complex JS object. It manipulates the page DOM. Inside it I have many repetitive selections spread across functions. I would like to cache the selectors to enhance performance. How do other people do this? I can cache on the function level but not the object. When I try to cache on the object level I seemingly end up with stale selectors that while defined don't actually work.

My gut is that I can only cache on the function level?

what I have read does not deal with caching inside a JS object.

View 1 Replies View Related

JQuery :: IE Caching JSON From A Coldfusion Remote CFC

Sep 16, 2009

I'm using jQuery $.ajax or $.getJSON on document.ready to access data from the server through coldfusion remote cfc files.

My url looks something like this for the main page [url]

When i go to a new page i.e. [url]

The ajax functions are called but are not collecting new data (only in IE). IE caches the response and wont give me a new one unless I refresh the page, which I don't want to do.

Here's an example of a function I call. I've also tried $.getJSON with no success.

function getGrains() {

I've looked into ways to make sure IE wont cache files. Some of the popular suggestions are:

Add a random parameter to the url: I've done this:

Change get requests to posts: Done (see function)

Also, jQuery's cache:false doesn't work.

I'm not sure I can use the meta tags or header cache-control functions because it's not caching my html page, it just caches these HTTPRequests from within my javascript file, and they're not loading html, just json objects.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved