Thursday 20 June 2019

Microsoft Internet Explorer - Fix Issue with XML not showing in proper format or not showing all data

Watch this example on YouTube

to fix it replace

<root>
<name>
    <first>Bob</first>
    <last>Doe</last>
</name>
<name>
    <first>John</first>
    <last>Lennon</last>
</name>
<name>
    <first>Bob</first>
    <last>Doe</last>
</name>
<name>
    <first>John</first>
    <last>Lennon</last>
</name>
</root>

with

<root>
<name>
    <first>Bob</first>
    <last>Doe</last>
</name>
<name>
    <first>John</first>
    <last>Lennon</last>
</name>
<name>
    <first>Bob</first>
    <last>Doe</last>
</name>
<name>
    <first>John</first>
    <last>Lennon</last>
</name>
</root>

No comments:

Post a Comment