Answers for "how to remove fade issue in adminlte 2 modal"

0

how to remove fade issue in adminlte 2 modal

$(window).on('popstate', function() {
    $(".modal-backdrop").remove();
});
Posted by: Guest on July-26-2020
0

how to remove fade issue in adminlte 2 modal

//setting callback function for 'hidden.bs.modal' event
$('#modal').on('hidden.bs.modal', function(){
  //remove the backdrop
  $('.modal-backdrop').remove();
})
Posted by: Guest on July-26-2020
0

how to remove fade issue in adminlte 2 modal

$('body').removeClass('modal-open');
$('.modal-backdrop').remove();
Posted by: Guest on July-26-2020
0

how to remove fade issue in adminlte 2 modal

$('modalId').modal('hide');
Posted by: Guest on July-26-2020

Browse Popular Code Answers by Language