Firebug & $.ajax(), FireBug can't Display the full value of the XML.
Original XML
[ <body xmlns="http://jabber.org/protocol/httpbind" hold="1"
rid="931736" secure="true" wait="10" ver="1
.6"/> ]
XML in FireBug
[<body xmlns ]
with Bold fonts
Jquery Script
$.ajax({
type: "POST",
url: myUrl,
processData: false,
data: xmldoc,
dataType: "xml",
success: function(e)
{
alert(e);
}
});
I can see the full XML is alert(xmldoc) but then in fireBug just won't
show out.
It's working but I can't see the XML parsing around to the server.
Is it any alternative way to use Firebug to show the XML document ?