if your model id is mydeletemodal, then below code will solve the issue.
$(‘#mydeletemodal’).modal(‘hide’);
secondly remove ‘modal-open’ class from body and ‘.modal-backdrop’ at the end of the page.
$(‘body’).removeClass(‘modal-open’);
$(‘.modal-backdrop’).remove();