Hello guys, I've been bangin my head for a week trying to figure out this problem via Jquery/Ajax request ..Im currently developing in google chrome and im using the network panel for debugging.. For some odd reason the http text status frequently hangs and says "Pending"..It hangs for about 10-15 mins then a status of 200 then occurs.. This problem does not happen is IE or FF... Im not sure what I could be doing wrong.. I disabled all of my extensions, I've added a unique Timestamp to the end of my parameter, I've also used cached:false within my ajax call.. If anyone can help me out with this that'll be great, thanks so much.. My ajax call that usually pending in chrome is below
- var timestamp = new Date().getTime();
- var thePage = "/app_test/test.php?unique_id=" + timestamp;
- vars = "name=john&lname=smith";
- $.ajax({
- data: vars,
- type: "GET",
- cache: false,
- url: thePage,
- success: function (data, textStatus, jqXHR) {
- console.log(textStatus);
- console.log(data);
- },
- error: function (jqXHR, textStatus, errorThrown) {
- console.log(textStatus);
- }
- });