I'm trying to do a confirm dialog using jquery, but the form doesn't get submitted at all, this is what I got:
<script type="text/javascript">
$(function() {
$("#dialog-confirm").dialog({
resizable: false,
height: 140,
modal: true,
autoOpen: false,
buttons: {
'Delete all items': function() {
$(this).dialog('close');
return true;
},
Cancel: function() {
$(this).dialog('close');
return false;
}
}
});
});
function ask() {
$("#dialog-confirm").dialog('open');
}
</script>
<form ... >
<input type="submit" value="delete" onclick="ask();return false;" />
</form>