Hi, I'm back again with this AJAX post problem.
I've used HttpFox FF extension and I've got some extra information. The post call is aborted. I got next message using HttpFox extension: Method: post Time: 0.451 Result: Aborted Type: NS_BINDING_ABORTED This happens when I use a low band internet connection. When I used a high band connection the problem doesn't come up. The post callback function is never called. It only has to receive an XML document which is around 3/11 KBytes On 8 oct, 19:50, David <garcia.narb...@gmail.com> wrote: > Hi Doug, > > yes, I am sure the data loads correctly, as this post call is > requested once you select an option in a select list. > I have an alert message just before the post call and I can see the > 'selected_data' parameter. > In fact, as I have said, the request is well done, as the server sends > the output. The point is this data does not get to the browser. > > Thanks Doug. > > On 8 oct, 20:45, "Knight, Doug" <dkni...@mitre.org> wrote: > > > > > Hi David, > > Do you have your call inside a $(document).ready? It may be that in a high > > bandwidth environment your data loads completely before your call is > > triggered, whereas in a low bandwidth environment your page has the chance > > to finish loading before the data makes it to your call. > > > My two cents, > > Doug > > > -----Original Message----- > > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of David > > Sent: Thursday, October 08, 2009 2:40 PM > > To: jQuery (English) > > Subject: [jQuery] post AJAX no response > > > Hi, > > > I have a problem with an AJAX call. It's a long time since a got it. I > > don't know how to deal with it. I have made tests and I don't know why > > it's happening. > > > I have a post AJAX call. Just like next one: > > > $.post(MY_SCRIPT, { db_id: selected_data}, > > function(data){ > > > ........... > > }); > > > The problem is, some times it returns data, and some times it doesn't. > > I have test it with FF and Chrome, it doesn't mater the browser. > > It has nothing to do with domain server crossing, nor server errors, > > as it some times works and some times it doesn't. > > > What I have found is, it works most of the times in a high bandwith > > connection (enterprise bandwith). Buit when I try it at home, most of > > the times it does not work. The function does not receive any data > > from the server. > > > I have checked the server when it happens, and the server returns > > data. It is as if the data got lost in the response. > > > I don't know what to do, as I don't know where the problem is. > > > Thanks