Popup and dialog failed

Popup and dialog failed

  1. <div data-role="page">
  2.       <div data-role="header">
  3.             <h3>test</h3>
  4.       </div>
  5.       <div data-role="content">
  6.             <a href="#memo" data-role="button" data-rel="popup">memo</a>
  7.       </div>
  8. </div>

  9. <div id="memo" data-role="popup">
  10.       <div data-role="header">
  11.             <a data-role="button" data-rel="back">close</a>
  12.             <h3>I am memo</h3>
  13.       </div>
  14.       <div data-role="content">
  15.             <p>I am content</p>
  16.       </div>
  17. </div>

If use external link, the dialog and popup button works fine, but if use Ajax load page, it won't, how to fix it?