can not calling popup when listview content show with ajax

can not calling popup when listview content show with ajax

night all...
I have a problem when loading content using ajax to the "home".
in the "home" I call listview content with ajax from "show.php"
listview   appears content ... but link to call popup when clicked on the "home", popup does not appear ... how to fix it.

This script home
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <link rel="stylesheet" href="jquery.mobile-1.3.0.min.css" />
  5.   <script src="js-script/jquery-1.9.1.min.js"></script>
  6.   <script src="js-script/jquery.mobile-1.3.0.min.js"></script>
  7. </head>

  8. <body>

  9. <div data-role="page" id="home">
  10.   <div data-role="header">
  11.     <h1>Home</h1>
  12.   </div>

  13.   <div data-role="content">
  14.      <!-- this place the data li show -->
  15.   </div>
  16. </div>

  17. <!-- script -->
  18.   <script>
  19.       $.ajax (
  20.       { 
  21.         url : "show.php", 
  22.         complete : function (xhr, result)
  23.         {
  24.           if (result != "success") return;
  25.           var response = xhr.responseText;
  26.           $("#home div:jqmData(role=content)").append (response);
  27.           $("#list").listview ();
  28.         }
  29.       }); 
  30. </script>
  31. </body>
  32. </html

and this show.php
  1. <?php
  2.  <ul data-role="listview" data-split-icon="gear" data-split-theme="d" data-inset="true"\>
  3.        <li data-role="list-divider"><center>List Data</center></li>
  4.       <li><a href="#">
  5.             <img src="blablablablablablab">
  6.             <h2>blablablablab</h2>
  7.             <p>asdasdasdasdasdasdasdasdas</p>
  8.              <a href="#popup1" data-rel="popup" data-transition="pop">Configuration</a>
  9.       </a></li>
  10. </ul>

  11. <!-- this popup cannot show when the link is clicked -->
  12. <div data-role="popup" id="popup1" data-theme="a">
  13.       <ul data-role="listview" data-inset="true" style-"min-width:210px;" data-theme="a">
  14.              <li data-role="divider" data-theme="b">Choose an Action</li>
  15.             <li><a href="http://ww.google.com">to google</a></li>
  16.       </ul>
  17. </div>
  18. ?>
please correct my script...