Ben aşağıdaki kodu kullanarak iç içe geçmiş bir AJAX çağrısı gerçekleştirmeye çalışıyorum. İç içe çağrı çalışmak için görünmüyor. Yanlış bir şey yapıyor muyum?
$.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);
        }
    });                                                                       
}
});