How to prevent background scrolling when Bootstrap 3 modal open on mobile platforms? On desktop browsers the background is prevented from scrolling and works as it should.<
Prevents the background from scrolling without any fuss.
Also prevents page jumping around from missing scrollbars
body.modal-open {
position: fixed;
overflow-y: scroll;
}
I thought you might forget to add attribute data-toggle="modal"
to the link or button that triggers the modal popup event. Firstly, I also got the same problem but, after adding the attribute above it works well for me.