[jQuery] Re: How to get the responsetext with $.ajax

2009-12-10 Thread Satyakaran
var reponse = xhr.responseText; should not work inside $.ajax () as xhr is assigned after the call. On Dec 9, 6:55 pm, ftw unrecev...@live.fr wrote: hi, I'am using jquery to get a response from a php page, here it is : function verif(thediv)         {                 var xhr = $.ajax({    

[jQuery] Re: How to get the responsetext with $.ajax

2009-12-09 Thread Civette
I do have something h looking like your code taht works fine. I do return result in a div : ___ $.ajax({ type: POST, url: get_opened_all.php, data: from_date=+$('input#from_date').val()+to_date=+$

[jQuery] Re: How to get the responsetext with $.ajax

2009-12-09 Thread MorningZ
is yes or no what you are returning from some.php? if that's the case, variable msg is what contains that On Dec 9, 8:55 am, ftw unrecev...@live.fr wrote: hi, I'am using jquery to get a response from a php page, here it is : function verif(thediv)         {                 var xhr =

[jQuery] Re: How to get the responsetext with $.ajax

2009-12-09 Thread MorningZ
Use Firebug's XHR tab and you'll see exactly what some.php responds with and then you can code accordingly as of now, what you are trying to accomplish and what you think is going on are total guesses Firebug will help pinpoint what is happening On Dec 9, 9:25 am, ftw unrecev...@live.fr