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="+$
('input#to_date').val()+"&who="+$('#who').val(),
                        async: false,
                        success: function(data){
                          $("#opened_all").empty().append(data);
                        }
                        });

________________

On Dec 9, 2: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({
>                         type: "POST",
>                         url: "some.php",
>                         data: "name=some variable",
>                         success: function(msg){
>
>                         var reponse = xhr.responseText;
>                         alert("here :  "+reponse);
>
>                         }
>                 });
>
>         }
>
> I tried many things there is no way to get the responseText (that should be
> yes or no), i want absolutly to use a asynchrone methode (the method with
> the async : false, don't helpe me at all :wistle: )
>
> Thank you for any help :handshake:
> --
> View this message in 
> context:http://old.nabble.com/How-to-get-the-responsetext-with-%24.ajax-tp267...
> Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Reply via email to