Popup and dialog failed
Popup and dialog failed
- <div data-role="page">
- <div data-role="header">
- <h3>test</h3>
- </div>
- <div data-role="content">
- <a href="#memo" data-role="button" data-rel="popup">memo</a>
- </div>
- </div>
- <div id="memo" data-role="popup">
- <div data-role="header">
- <a data-role="button" data-rel="back">close</a>
- <h3>I am memo</h3>
- </div>
- <div data-role="content">
- <p>I am content</p>
- </div>
- </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?