Can someone help me with a script to search the companies.xml file below and display search results on the listview in the home.html?
home.html
- <html>
- <head>
- <title>mysearch</title>
- </head>
- <body>
- <input type="search" id="search-mini" autocomplete="off" />
- <ul data-role = "listview" id= "SearchResult"> </ul>
- </body>
- </html>
companies.xml
- <?xml version="1.0" encoding="UTF-8"?>
- <?xml-stylesheet type="text/css" href="xmlcss.css"?>
- <Companies xmlns:xlink="http://www.w3.org/1999/xlink">
-
- <Company id='20151'>
- <Title>Business Culture</Title>
- <Image>images/logo.png</Image>
- <Sector>Software Development</Sector>
- <lbllocation>Location:</lbllocation>
- <location>Tlokweng</location>
- <lblPhone>Call: </lblPhone>
- <Phone>+26774653048</Phone>
- <lblEmail>Email:</lblEmail>
- <molaetsa>slyvesterslim@gmail.com</molaetsa>
- <lblFax>Fax: </lblFax>
- <Fax>+267453909</Fax>
- <lbladdress>Physical Address: </lbladdress>
- <Address>Tlokweng, Diamond Inn, Unit 5</Address>
- </Company>
- <Company id='20152'>
- <Title>CPAC PTY LTD</Title>
- <Image>images/logo.png</Image>
- <Sector>Technology</Sector>
- <lbllocation>Location:</lbllocation>
- <location>Gaborone</location>
- <lblPhone>Call: </lblPhone>
- <Phone>+26774653048</Phone>
- <lblEmail>Email: </lblEmail>
- <molaetsa>sales@cpac.com.bw</molaetsa>
- <lblFax>Fax: </lblFax>
- <Fax>+267453909</Fax>
- <lbladdress>Physical Address: </lbladdress>
- <Address>Village, Modisa Road, 21183</Address>
- </Company>
- </Companies>