vote up 0 vote down star

I'm trying to figure the result of this call if it was successful or not. The successFunction doesn't get called so i'm assuming it was not. How do i know what went wrong?

xmlRequest = $.post("/url/file/", { 'id' : object.id }, successFunction, 'json');

Do i use the xmlRequest object?

flag

73% accept rate

2 Answers

vote up 4 vote down check

You can use:

$.ajax({
    url:"/url/file/",
    dataType:"json"
    data:{ 'id' : object.id }
    error:function(request){alert(request.statusText)}
    success:successFunction
})
link|flag
vote up 5 vote down

You could use the $.ajaxComplete() and/or $.ajaxError() methods to attach function to those events. I would also recommend using the Firefox browser with the Firebug pluging, you can get a lot of information about the requests and responses.

link|flag
I wasn't able to get this to work, i tried using the example on jquery's page with no success – SeanDowney Sep 12 '08 at 18:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.