I have added two links inside the dialog box which when clicked I would like to close the modal. This works fine in all browsers so far except IE7.
Here is the code to close:
function idConfirm(){
$('#dialog-modal a').click(function(){
$('#dialog-modal').dialog('close');
});
}