Response title
This is preview!
//-------------------------------------------------------------------- function jqConfirm(msg, okLabel,cancelLabel,okCallBack,cancelCallBack){ $("#jqConfirmDialog").text(msg); $("#jqConfirmDialog").dialog({ resizable: false, modal: true, draggable: false, buttons:[ { text: okLabel, click: function(){$(this).dialog("close");okCallBack();} },/* end ok button*/ { text: cancelLabel, click: function(){$(this).dialog("close");cancelCallBack();} }/*end cancel button*/ ]/*end buttons*/ });// end .dialog() }// end funciton jqConfirm() //-----------------------------------------------------------------------------
© 2013 jQuery Foundation
Sponsored by and others.