loading.........
P:
Internet Explorer y otros browsers no tiene XMLSerializer
R: A crearlo
Código PHP:
if((typeof XMLSerializer)==='undefined')
{
window.XMLSerializer = function() {
this.toString=function()
{
return "[object XMLSerializer]";
};
this.serializeToString=function(xml){
return xml.xml || xml.outerHTML || "Error XMLSerializer";
};
};
}
Muy importante poner
window.XMLSerializer = function()
y no asi
function XMLSerializer()
connection closed.