Parse XML via jquery on listview jquerymobile

Parse XML via jquery on listview jquerymobile

hello i want load xml data into listview onmy jquery mobile using ajax but don't work
here is html
  1. <div data-role="page" id="VHC">
  2.           <header data-role="header" id="head_home">
  3.                 <div class="top_head_home"></div><br />
  4.                 <div class="fot_head_home"></div>
  5.             </header>
  6.           <div data-role="navbar">
  7.             <ul>
  8.                 <li><a href="#home" data-icon="back">Retour</a></li>
  9.         <li><a href="#home" data-icon="home">Accueil</a></li>
  10.         <li><a href="#rch" data-icon="search">Recherche</a></li>
  11.       </ul>
  12.             </div>
  13.             <section data-role="content" id="cont_home">  
  14. <a href="#"><div class="list"></div></a>
  15.             </section>  
  16.             <footer data-role="footer" id="foot_Auth">
  17.             <div class="top_footer_auth"></div>
  18.                 <div class="fot_footer_auth">TEST COPYRIGHT<sup>&copy;</sup>2015</div>
  19.         </footer>     
  20. </div>
here is js script
  1. $(document).ready(function()
  2.         {
  3.           $.ajax({
  4.             type: "GET",
  5.             url: "vehicules.xml",
  6.             dataType: "xml",
  7.             success: parseXml
  8.           });
  9.         });

  10.         function parseXml(xml)
  11.         {
  12.           $("#list").html("<ul id='content' data-role='listview' data-inset='true'></ul>");
  13.           $(xml).find("vehicule").each(function()
  14.           {
  15.             $("#content").append("<li><a href='"+$(this).find("codeid").text()+"'><h2>"+$(this).find("driver").text()+"</h2><p>"+$(this).find("type").text()+"</p></a></li>");
  16.           });  
  17.         }
  18.  

here is the xml code
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <vehicules>
  3.   <vehicule>
  4.     <codeid >87521</codeid>
  5. <driver>Salim</driver>
  6. <type>Subaru Impreza WRX STI 2015</type>
  7. <speed>60km/h</speed>
  8.   </vehicule>
  9.     <vehicule>
  10.     <codeid >892317</codeid>
  11. <driver>Bilel</driver>
  12. <type>BWM X6</type>
  13. <speed>160km/h</speed>
  14.   </vehicule>
  15.     <vehicule>
  16.     <codeid >25741</codeid>
  17. <driver>Noor</driver>
  18. <type>Citroen C3</type>
  19. <speed>60km/h</speed>
  20.   </vehicule>
  21. </BookList>