JQuery - Nested AJAX

Posted by Vincent on Stack Overflow See other posts from Stack Overflow or by Vincent
Published on 2010-03-30T19:56:12Z Indexed on 2010/03/30 20:13 UTC
Read the original article Hit count: 381

Filed under:
|
|

All,

I am trying to perform a nested AJAX call using the following code. The nested call doesn't seem to work. Am I doing anything wrong?

$.ajax({
type: 'GET',
url: "/public/customcontroller/dosomething",
cache: false,
dataType: "html",
success: function(html_input)
{
    $.ajax({
        type: 'GET',
        url: "/public/customcontroller/getjobstatus",
        cache: false,
        dataType: "html",
        success: function(html_input){
        alert(html_input);
        }
    });                                                                       
}
});

Thanks

© Stack Overflow or respective owner

Related posts about AJAX

Related posts about jQuery