A Popup Dialog Box for jQueryMobile
This shows standard, default popup only mode.
Open Dialog HTML<a href="#" id="opendialog" data-role="button">Open Dialog</a>jQuery
$(document).delegate('#opendialog', 'click', function() { // NOTE: The selector can be whatever you like, so long as it is an HTML element. // If you prefer, it can be a member of the current page, or an anonymous div // like shown. $('<div>').simpledialog2({ mode: 'blank', headerText: 'Some Stuff', headerClose: true, blankContent : "<ul data-role='listview'><li>Some</li><li>List</li><li>Items</li></ul>"+ // NOTE: the use of rel="close" causes this button to close the dialog. "<a rel='close' data-role='button' href='#'>Close</a>" }) })