JQuery $.ajax post not always sent in firefox (works in chrome) -



JQuery $.ajax post not always sent in firefox (works in chrome) -

i have simple html 5 application sends ajax post requests using jquery. works fine in chrome depending phone call function makes ajax post sent or not (verified using wireshark) in firefox.

firebug nowadays failed post has exact same content of successful post.

what's little maddening fail event gives me status text of "error", no exception , jqxhr object has status of "error". not helpful.

the post coded follows:

$.ajax({ url : "srv/reports.php", type : "post", contenttype : "text/html", cache : false, datatype : "text", data: json.stringify(postdata), success : function(data){ ... }}).fail(...);

this phone call retrieves rows of data. method makes phone call called when user first navigates page, if button clicked (both of these sent , succeed) or when, after double-clicking row of info edit it, presses escape button discard editing row , reverting row of info initial state.

i'm @ loss here. changed context of phone call fails document event instead of off row gets deleted same problem.

any ideas might causing this?

jquery ajax

Comments

Popular posts from this blog

web services - java.lang.NoClassDefFoundError: Could not initialize class net.sf.cglib.proxy.Enhancer -

Accessing MATLAB's unicode strings from C -

javascript - mongodb won't find my schema method in nested container -