Scroll problem when second modal is hidden
Posted Date:01-11-2017
In this post we will explain solve the modal scrolling issue in bootstrap pop up modal.
You should add the following Javascript
$('.modal').on('hidden.bs.modal', function (e) { if($('.modal').hasClass('in')) { $('body').addClass('modal-open'); } });