<div data-role="dialog" id="sure" data-title="Are you sure?"> <div data-role="content"> <h3 class="sure-1">???</h3> <p class="sure-2">???</p> <a href="#" class="sure-do" data-role="button" data-theme="b" data-rel="back">Yes</a> <a href="#" data-role="button" data-theme="c" data-rel="back">No</a> </div> </div>
And this:
function areYouSure(text1, text2, button, callback) { $("#sure .sure-1").text(text1); $("#sure .sure-2").text(text2); $("#sure .sure-do").text(button).on("click.sure", function() { callback(); $(this).off("click.sure"); }); $.mobile.changePage("#sure"); }
You can use them wherever you need a confirmation dialog:
areYouSure("Are you sure?", "---description---", "Exit", function() { // user has confirmed, do stuff });
And also link to this: http://dev.jtsage.com/jQM-SimpleDialog/demos2/popup.html
archu
source share