I'm doing this:
$("#bcdialog").dialog({
resizable: true,
height: 400,
width: 600,
modal: true,
autoOpen: false,
buttons: {
'cancel': function() { $(this).dialog('close'); }
'save': function() { $("#bcdialog form").submit(); }
}
});
I would like to know if it is possible to use this for the save function instead of #bcdialog form