Possible Duplicate:
Yes or No confirm box using jQuery
I see a lot of examples here about replacements for jQuerys standard confirm dialog but don't understand any of them.
If I want to pop-up a confirm dialog using jQuery or jQueryUI. How can i do it and retrieve what button the user clicked ?
Surely there must be a simple way to set up a confirm dialog like an alert("Something!");
command.
Add two buttons to it and set a call back function on yes
or no
?
Try this one
$('<div></div>').appendTo('body')
.html('<div><h6>Yes or No?</h6></div>')
.dialog({
modal: true, title: 'message', zIndex: 10000, autoOpen: true,
width: 'auto', resizable: false,
buttons: {
Yes: function () {
doFunctionForYes();
$(this).dialog("close");
},
No: function () {
doFunctionForNo();
$(this).dialog("close");
}
},
close: function (event, ui) {
$(this).remove();
}
});