I am using bootstrap and Parse framework to build a small webapp. But those Bootstrap modals keep adding padding-right to body after closed. How to solve this?
I tri
With Bootstrap 4 this worked for me:
$(selector).on('hide.bs.modal', function (e) { $('body').css('padding-right','0'); });