I have the following xml content format and would like to know if I can use JQuery to load the data into div:
<?xml version="1.0" encoding="ISO-8859-15"?>
<status>
<client pid="239" account="account1" host="domaina.com" />
<client pid="459" account="account2" host="domainb.com" />
<client pid="235" account="account3" host="domainc.com" />
</status>
Most xml examples I have seen are in this format:
<?xml version="1.0" encoding="utf-8" ?>
<Status>
<client>
<pid>239</pid>
<account>account1</account>
<host>domaina.com</host>
</client>
<client>
<pid>459</pid>
<account>account2</account>
<host>domainb.com</host>
</client>
<client>
<pid>235</pid>
<account>account3</account>
<host>domainc.com</host>
</client>
</Status>
Is there a guide I can follow to load data in the first xml file or provide me with links to possibly duplicate question.
Thanks