Hello!
I have this problem that an ajax GET call is shown in the console but
not the POST calls. I'm sure it worked some FF versions ago but
somewhere somehow my firebug stopped showing it.
Using Firefox 3.6.13 and Firebug 1.6.0 (just reinstalled) on a windows
XP machine.
This is the function, in refreshCarLines() function uses a ajax GET.
The console does not show the POST but does show the GET from that
function
$("#carLineForm").ajaxSubmit({
url: "/ajax-response-xml.php",
dataType: "xml",
type: "post",
target: "foo",
success: function(xml){
$(xml).find("xmlresponse").each(function(){
$("#formpart_2_form").html($(this).find("data").text());
});
refreshCarLines();
}
});
--
You received this message because you are subscribed to the Google Groups
"Firebug" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/firebug?hl=en.