382

I want my body to stop scrolling when using the mousewheel while the Modal (from http://twitter.github.com/bootstrap) on my website is opened.

I've tried to call the piece of javascript below when the modal is opened but without success

$(window).scroll(function() { return false; });

AND

$(window).live('scroll', function() { return false; });

Please note our website dropped support for IE6, IE7+ needs to be compatible though.

Penny Liu
  • 7,720
  • 5
  • 40
  • 66
xorinzor
  • 5,477
  • 9
  • 34
  • 65

45 Answers45

499

Bootstrap's modal automatically adds the class modal-open to the body when a modal dialog is shown and removes it when the dialog is hidden. You can therefore add the following to your CSS:

body.modal-open {
    overflow: hidden;
}

You could argue that the code above belongs to the Bootstrap CSS code base, but this is an easy fix to add it to your site.

Update 8th feb, 2013
This has now stopped working in Twitter Bootstrap v. 2.3.0 -- they no longer add the modal-open class to the body.

A workaround would be to add the class to the body when the modal is about to be shown, and remove it when the modal is closed:

$("#myModal").on("show", function () {
  $("body").addClass("modal-open");
}).on("hidden", function () {
  $("body").removeClass("modal-open")
});

Update 11th march, 2013 Looks like the modal-open class will return in Bootstrap 3.0, explicitly for the purpose of preventing the scroll:

Reintroduces .modal-open on the body (so we can nuke the scroll there)

See this: https://github.com/twitter/bootstrap/pull/6342 - look at the Modal section.

Jeroen
  • 1,142
  • 1
  • 11
  • 21
MartinHN
  • 18,434
  • 18
  • 82
  • 125
  • 2
    this does not work anymore in bootstrap 2.2.2. Hopefully .modal-open will come back in the future... https://github.com/twitter/bootstrap/issues/5719 – ppetrid Dec 19 '12 at 22:30
  • 2
    @ppetrid I don't expect it to return. Based on this writing: https://github.com/twitter/bootstrap/wiki/Upcoming-3.0-changes (look at the bottom). Quote: _"No more inner modal scrolling. Instead, modals will grow to house their content and the page scroll to house the modal."_ – MartinHN Dec 20 '12 at 10:25
  • @MartinHN yeah i know, today the bootstrap team closed the github issue as 'wontfix'. – ppetrid Dec 20 '12 at 20:07
  • And the `modal-open` class will be back to prevent scrolling in Bootstrap 3.0! See my update. – MartinHN Mar 11 '13 at 14:48
  • @anand at the time the current answer was the best answer, after an x amount of time Icannot change the answer anymore. – xorinzor Apr 20 '13 at 20:54
  • Worked for me. Just used `$('body').addClass('modal-open')` before `$('#modal').modal('show')` and `$('body').removeClass('modal-open')` before `$('#modal').modal('hide')`. I have put the CSS code too. Thanks a lot! – Bagata May 15 '13 at 03:10
  • 2
    @Bagata Cool - the `modal-open` will return in Bootstrap 3, so when that launches it should be safe to remove the above code. – MartinHN May 15 '13 at 09:35
  • 2
    This is why one should keep scrolling down, if the chosen answer doesn't satisfy you, there are chances that you are gonna find gems like these. didnt expect a 97+ voted answer burried so deep under other less liked comments. – Mohd Abdul Mujib Jan 23 '14 at 10:31
  • Hi @wardha-Web It is only under the accepted answer, as far as I see it. The ranking must be by answer, then by votes. But yes, accepted answers are not always the best :) – MartinHN Jan 23 '14 at 12:29
  • anyway to stop the page from shifting to the right when a modal is open? – waspinator Apr 15 '14 at 14:38
  • @waspinator You can use the `modal-open` class on the `body` tag again, and set `padding-right: 17px;` - but this is not safe. It shifts the width of the scrollbar which will vary for browser/OS. Also, if the page does not have scroll bars before opening the modal, the padding should not be added. – MartinHN Apr 15 '14 at 21:48
  • 1
    @waspinator - I just solved the shifting issue (which is IMO very annoying) with the following CSS code: `body { padding-top: 70px; overflow-y: scroll; }` `body.modal-open { overflow-y: scroll; }` `.modal { overflow: auto; }` ... With this the vertical scrolls will be always visible on body, and the modal scroll will be visible only when needed. – Fer García Apr 21 '14 at 18:09
  • 1
    Chrome for Android just didn't like this solution! I had to go with position fixed, as [Brad outlined below](http://stackoverflow.com/a/24727206/945370). YMMV, of course :) – Brendan Aug 22 '14 at 14:53
  • For some reason pinterest modal dialog is not scrolled. And they use `noScroll{overflow:hidden;}` on the body and body has `position:relative` that is never changed to fixed. – Yaroslav Yakovlev Nov 06 '14 at 16:40
  • 4
    the problem with this is that to prevent the document from scrolling to the top when a modal is opened you needed to add body.modal-open{overflow:visible}. Your solution works at the moment, with the downside that the document scrolls to the top once a modal is openen – patrick Sep 17 '15 at 22:07
  • @patrick With 3.0 and newer, it all works as it should out of the box. No need to manually add the `modal-open` class to the body. It keeps the scroll position of body. – MartinHN Sep 18 '15 at 08:34
  • @MartinHN, no, it doesn't... that's why I was looking here for a solution. Might be a combination with something else, but the standard modal caused the original page to scroll to the top once a modal was opened – patrick Oct 03 '15 at 14:01
  • @MartinHN Unfortunately not worked for me with Bootstrap 3. On the other hand normally I use `html { overflow-y: scroll; }` on my page body and when modal is open the scrollbar gets twice. Any idea? – Jack Dec 29 '15 at 17:01
  • It prevents from scrolling, but cannot stop the scroll events firing. Checked in Mac OS X Chrome version 49. – Chemical Programmer Mar 26 '16 at 15:01
  • Although the background is keep scrolling to the bottom, I make it scroll to the top after closing the modal by using JQuery. ```$(window).scrollTop(0);``` – Dale Nguyen Jan 15 '18 at 22:11
  • Thanks for this useful great solution. good works man. – Sedat Kumcu Apr 02 '21 at 10:06
130

The accepted answer doesn't work on mobile (iOS 7 w/ Safari 7, at least) and I don't want MOAR JavaScript running on my site when CSS will do.

This CSS will prevent the background page from scrolling under the modal:

body.modal-open {
    overflow: hidden;
    position: fixed;
}

However, it also has a slight side-affect of essentially scrolling to the top. position:absolute resolves this but, re-introduces the ability to scroll on mobile.

If you know your viewport (my plugin for adding viewport to the <body>) you can just add a css toggle for the position.

body.modal-open {
    // block scroll for mobile;
    // causes underlying page to jump to top;
    // prevents scrolling on all screens
    overflow: hidden;
    position: fixed;
}
body.viewport-lg {
    // block scroll for desktop;
    // will not jump to top;
    // will not prevent scroll on mobile
    position: absolute; 
}

I also add this to prevent the underlying page from jumping left/right when showing/hiding modals.

body {
    // STOP MOVING AROUND!
    overflow-x: hidden;
    overflow-y: scroll !important;
}

this answer is a x-post.

Community
  • 1
  • 1
Brad
  • 14,569
  • 6
  • 34
  • 54
  • 7
    Thanks! Mobiles (at least iOS and Android native browser) were giving me a headache and wouldn't work without the `position: fixed` on the body. – Raul Rene Aug 19 '14 at 13:59
  • Thanks for also including the code for preventing the page from jumping left/right when showing/hiding modals. This was extremely useful and I verified it fixes an issue I was having on Safari on an iPhone 5c running iOS 9.2.1. – Elijah Lofgren Feb 04 '16 at 17:04
  • 7
    In order to fix scrolling to top, you can record position before adding the class, then after class is removed, do window.scroll to recorded position. This is how I fixed it for myself: http://pastebin.com/Vpsz07zd. – Tool Aug 25 '16 at 09:15
  • Though I feel this would only fit very basic needs, it was a useful fix. Thanks. – Steve Benner May 10 '19 at 08:24
36

Simply hide the body overflow and it makes body not scrolling. When you hide the modal, revert it to automatic.

Here is the code:

$('#adminModal').modal().on('shown', function(){
    $('body').css('overflow', 'hidden');
}).on('hidden', function(){
    $('body').css('overflow', 'auto');
})
Mehmet Fatih Yıldız
  • 1,526
  • 14
  • 23
20

You could try setting body size to window size with overflow: hidden when modal is open

charlietfl
  • 164,229
  • 13
  • 110
  • 143
19

You need to go beyond @charlietfl's answer and account for scrollbars, otherwise you may see a document reflow.

Opening the modal:

  1. Record the body width
  2. Set body overflow to hidden
  3. Explicitly set the body width to what it was in step 1.

    var $body = $(document.body);
    var oldWidth = $body.innerWidth();
    $body.css("overflow", "hidden");
    $body.width(oldWidth);
    

Closing the modal:

  1. Set body overflow to auto
  2. Set body width to auto

    var $body = $(document.body);
    $body.css("overflow", "auto");
    $body.width("auto");
    

Inspired by: http://jdsharp.us/jQuery/minute/calculate-scrollbar-width.php

Kirk Beard
  • 8,124
  • 12
  • 39
  • 43
jpap
  • 749
  • 8
  • 10
16

Warning: The option below is not relevant to Bootstrap v3.0.x, as scrolling in those versions has been explicitly confined to the modal itself. If you disable wheel events you may inadvertently prevent some users from viewing the content in modals that have heights greater than the viewport height.


Yet Another Option: Wheel Events

The scroll event is not cancelable. However it is possible to cancel the mousewheel and wheel events. The big caveat is that not all legacy browsers support them, Mozilla only recently adding support for the latter in Gecko 17.0. I don't know the full spread, but IE6+ and Chrome do support them.

Here's how to leverage them:

$('#myModal')
  .on('shown', function () {
    $('body').on('wheel.modal mousewheel.modal', function () {
      return false;
    });
  })
  .on('hidden', function () {
    $('body').off('wheel.modal mousewheel.modal');
  });

JSFiddle

merv
  • 42,696
  • 7
  • 122
  • 170
9
/* =============================
 * Disable / Enable Page Scroll
 * when Bootstrap Modals are
 * shown / hidden
 * ============================= */

function preventDefault(e) {
  e = e || window.event;
  if (e.preventDefault)
      e.preventDefault();
  e.returnValue = false;  
}

function theMouseWheel(e) {
  preventDefault(e);
}

function disable_scroll() {
  if (window.addEventListener) {
      window.addEventListener('DOMMouseScroll', theMouseWheel, false);
  }
  window.onmousewheel = document.onmousewheel = theMouseWheel;
}

function enable_scroll() {
    if (window.removeEventListener) {
        window.removeEventListener('DOMMouseScroll', theMouseWheel, false);
    }
    window.onmousewheel = document.onmousewheel = null;  
}

$(function () {
  // disable page scrolling when modal is shown
  $(".modal").on('show', function () { disable_scroll(); });
  // enable page scrolling when modal is hidden
  $(".modal").on('hide', function () { enable_scroll(); });
});
jparkerweb
  • 99
  • 1
  • 2
9

Couldn't make it work on Chrome just by changing CSS, because I didn't want the page to scroll back to the top. This worked fine:

$("#myModal").on("show.bs.modal", function () {
  var top = $("body").scrollTop(); $("body").css('position','fixed').css('overflow','hidden').css('top',-top).css('width','100%').css('height',top+5000);
}).on("hide.bs.modal", function () {
  var top = $("body").position().top; $("body").css('position','relative').css('overflow','auto').css('top',0).scrollTop(-top);
});
tetsuo
  • 10,086
  • 3
  • 29
  • 35
  • 1
    this is the only solution that worked for me on bootstrap 3.2. – volx757 Feb 09 '16 at 20:06
  • 1
    Had the jump to top issue with angular-material sidenavs. This was the only answer that seems to work in all cases (desktop/mobile + allow scroll in the modal/sidenav + leave the body scroll position fixed without jumping). – cYrixmorten Sep 19 '17 at 08:52
  • This is also only solution that actually worked for me. tx – Deedz Dec 12 '18 at 13:11
9

Try this one:

.modal-open {
    overflow: hidden;
    position:fixed;
    width: 100%;
    height: 100%;
}

it worked for me. (supports IE8)

fatCop
  • 2,218
  • 9
  • 31
  • 50
  • 4
    This works but also causes you to jump to the top when you open a modal when using `position: fixed`. – AlexioVay Dec 17 '16 at 13:37
8

Adding the class 'is-modal-open' or modifying style of body tag with javascript is okay and it will work as supposed to. But the problem we gonna face is when the body becomes overflow:hidden, it will jump to the top, ( scrollTop will become 0 ). This will become a usability issue later.

As a solution for this problem, instead of changing body tag overflow:hidden change it on html tag

$('#myModal').on('shown.bs.modal', function () {
  $('html').css('overflow','hidden');
}).on('hidden.bs.modal', function() {
  $('html').css('overflow','auto');
});
  • 1
    This is absolutely the correct answer because the general consensus answer scrolls the page to the top which is a horrible user experience. You should write a blog on this. I ended up turning this into a global solution. – Smith Jan 12 '17 at 19:58
  • Very simple and correct answer. Solved my problem in 2020. – Eugene Chabanov Nov 02 '20 at 11:31
7

For Bootstrap, you might try this (working on Firefox, Chrome and Microsoft Edge) :

body.modal-open {
    overflow: hidden;
    position:fixed;
    width: 100%;
}

Hope this helps...

Murat Yıldız
  • 9,619
  • 6
  • 51
  • 58
5

As of November 2017 Chrome Introduced a new css property

overscroll-behavior: contain;

which solves this problem although as of writing has limited cross browser support.

see below links for full details and browser support

user1095118
  • 3,480
  • 3
  • 21
  • 19
5

I'm not sure about this code, but it's worth a shot.

In jQuery:

$(document).ready(function() {
    $(/* Put in your "onModalDisplay" here */)./* whatever */(function() {
        $("#Modal").css("overflow", "hidden");
    });
});

As I said before, I'm not 100% sure but try anyway.

Anish Gupta
  • 2,150
  • 2
  • 21
  • 37
  • 1
    This doesn't prevents the body from scrolling while the modal is opened – xorinzor Mar 02 '12 at 20:20
  • @xorinzor you stated in the comments section of charlietfl's answer that this works. But you said: This doesn't prevents the body from scrolling while the modal is opened. – Anish Gupta Mar 24 '12 at 15:13
  • true but for now its the only solution that partly works and I'm fine with. the reason why I marked his response as answer is because he was earlier with the answer. – xorinzor Apr 04 '12 at 08:52
  • @xorinzor really, i thought i answered before him/her , might be some weird glitch. its fine though – Anish Gupta Apr 04 '12 at 11:00
4

The best solution is the css-only body{overflow:hidden} solution used by most of these answers. Some answers provide a fix that also prevent the "jump" caused by the disappearing scrollbar; however, none were too elegant. So, I wrote these two functions, and they seem to work pretty well.

var $body = $(window.document.body);

function bodyFreezeScroll() {
    var bodyWidth = $body.innerWidth();
    $body.css('overflow', 'hidden');
    $body.css('marginRight', ($body.css('marginRight') ? '+=' : '') + ($body.innerWidth() - bodyWidth))
}

function bodyUnfreezeScroll() {
    var bodyWidth = $body.innerWidth();
    $body.css('marginRight', '-=' + (bodyWidth - $body.innerWidth()))
    $body.css('overflow', 'auto');
}

Check out this jsFiddle to see it in use.

Stephen M. Harris
  • 5,796
  • 2
  • 35
  • 42
3

I'm not 100% sure this will work with Bootstrap but worth a try - it worked with Remodal.js which can be found on github: http://vodkabears.github.io/remodal/ and it would make sense for the methods to be pretty similar.

To stop the page jumping to the top and also prevent the right shift of content add a class to the body when the modal is fired and set these CSS rules:

body.with-modal {
    position: static;
    height: auto;
    overflow-y: hidden;
}

It's the position:static and the height:auto that combine to stop the jumping of content to the right. The overflow-y:hidden; stops the page from being scrollable behind the modal.

AdamJB
  • 346
  • 3
  • 10
  • This solution works perfectly for me in Safari 11.1.1, Chrome 67.0.3396.99 and Firefox 60.0.2. Thanks! – Dom Jul 22 '18 at 22:17
3

Many suggest "overflow: hidden" on the body, which will not work (not in my case at least), since it will make the website scroll to the top.

This is the solution that works for me (both on mobile phones and computers), using jQuery:

    $('.yourModalDiv').bind('mouseenter touchstart', function(e) {
        var current = $(window).scrollTop();
        $(window).scroll(function(event) {
            $(window).scrollTop(current);
        });
    });
    $('.yourModalDiv').bind('mouseleave touchend', function(e) {
        $(window).off('scroll');
    });

This will make the scrolling of the modal to work, and prevent the website from scrolling at the same time.

Danie
  • 367
  • 3
  • 13
  • Looks like this solution fixes this iOS bug too: https://hackernoon.com/how-to-fix-the-ios-11-input-element-in-fixed-modals-bug-aaf66c7ba3f8 – Gotenks Mar 15 '18 at 16:13
2

Based on this fiddle: http://jsfiddle.net/dh834zgw/1/

the following snippet (using jquery) will disable the window scroll:

 var curScrollTop = $(window).scrollTop();
 $('html').toggleClass('noscroll').css('top', '-' + curScrollTop + 'px');

And in your css:

html.noscroll{
    position: fixed;
    width: 100%;
    top:0;
    left: 0;
    height: 100%;
    overflow-y: scroll !important;
    z-index: 10;
 }

Now when you remove the modal, don't forget to remove the noscroll class on the html tag:

$('html').toggleClass('noscroll');
ling
  • 7,505
  • 3
  • 41
  • 39
  • Shouldn't the `overflow` be set to `hidden`? +1 though as this worked for me (using `hidden`). – mhulse Jun 07 '16 at 17:00
2

Sadly none of the answers above fixed my issues.

In my situation, the web page originally has a scroll bar. Whenever I click the modal, the scroll bar won't disappear and the header will move to right a bit.

Then I tried to add .modal-open{overflow:auto;} (which most people recommended). It indeed fixed the issues: the scroll bar appears after I open the modal. However, another side effect comes out which is that "background below the header will move to the left a bit, together with another long bar behind the modal"

Long bar behind modal

Luckily, after I add {padding-right: 0 !important;}, everything is fixed perfectly. Both the header and body background didn't move and the modal still keeps the scrollbar.

Fixed image

Hope this can help those who are still stuck with this issue. Good luck!

Leigh
  • 28,424
  • 10
  • 49
  • 96
2

You could use the following logic, I tested it and it works(even in IE)

   <html>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">

var currentScroll=0;
function lockscroll(){
    $(window).scrollTop(currentScroll);
}


$(function(){

        $('#locker').click(function(){
            currentScroll=$(window).scrollTop();
            $(window).bind('scroll',lockscroll);

        })  


        $('#unlocker').click(function(){
            currentScroll=$(window).scrollTop();
            $(window).unbind('scroll');

        })
})

</script>

<div>

<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<button id="locker">lock</button>
<button id="unlocker">unlock</button>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>

</div>
myriacl
  • 130
  • 2
  • 6
1

This worked for me:

$("#mymodal").mouseenter(function(){
   $("body").css("overflow", "hidden"); 
}).mouseleave(function(){
   $("body").css("overflow", "visible");
});
1

Most of the pieces are here, but I don't see any answer that puts it all together.

The problem is threefold.

(1) prevent the scroll of the underlying page

$('body').css('overflow', 'hidden')

(2) and remove the scroll bar

var handler = function (e) { e.preventDefault() }
$('.modal').bind('mousewheel touchmove', handler)

(3) clean up when the modal is dismissed

$('.modal').unbind('mousewheel touchmove', handler)
$('body').css('overflow', '')

If the modal is not full-screen then apply the .modal bindings to a full screen overlay.

evoskuil
  • 830
  • 1
  • 6
  • 11
1

My solution for Bootstrap 3:

.modal {
  overflow-y: hidden;
}
body.modal-open {
  margin-right: 0;
}

because for me the only overflow: hidden on the body.modal-open class did not prevent the page from shifting to the left due to the original margin-right: 15px.

pierrea
  • 1,147
  • 12
  • 16
1

I just done it this way ...

$('body').css('overflow', 'hidden');

But when the scroller dissapeared it moved everything right 20px, so i added

$('body').css('margin-right', '20px');

straight after it.

Works for me.

Cliff
  • 75
  • 1
  • 7
1

If modal are 100% height/width "mouseenter/leave" will work to easily enable/disable scrolling. This really worked out for me:

var currentScroll=0;
function lockscroll(){
    $(window).scrollTop(currentScroll);
} 
$("#myModal").mouseenter(function(){
    currentScroll=$(window).scrollTop();
    $(window).bind('scroll',lockscroll); 
}).mouseleave(function(){
    currentScroll=$(window).scrollTop();
    $(window).unbind('scroll',lockscroll); 
});
Mats
  • 11
  • 1
1

I had a sidebar that was generated by checkbox hack. But the main idea is to save the document scrollTop and not to change it during scrolling the window.

I just didn't like the page jumping when body becomes 'overflow: hidden'.

window.addEventListener('load', function() {
    let prevScrollTop = 0;
    let isSidebarVisible = false;

    document.getElementById('f-overlay-chkbx').addEventListener('change', (event) => {
        
        prevScrollTop = window.pageYOffset || document.documentElement.scrollTop;
        isSidebarVisible = event.target.checked;

        window.addEventListener('scroll', (event) => {
            if (isSidebarVisible) {
                window.scrollTo(0, prevScrollTop);
            }
        });
    })

});
1

Since for me this problem presented mainly on iOS, I provide the code to fix that only on iOS:

  if(!!navigator.platform && /iPad|iPhone|iPod/.test(navigator.platform)) {
    var $modalRep    = $('#modal-id'),
        startScrollY = null, 
        moveDiv;  

    $modalRep.on('touchmove', function(ev) {
      ev.preventDefault();
      moveDiv = startScrollY - ev.touches[0].clientY;
      startScrollY = ev.touches[0].clientY;
      var el = $(ev.target).parents('#div-that-scrolls');
      // #div-that-scrolls is a child of #modal-id
      el.scrollTop(el.scrollTop() + moveDiv);
    });

    $modalRep.on('touchstart', function(ev) {
      startScrollY = ev.touches[0].clientY;
    });
  }
LowFieldTheory
  • 1,554
  • 1
  • 23
  • 35
1

None of the above answers worked perfectly for me. So I found another way which works well.

Just add a scroll.(namespace) listener and set scrollTop of the document to the latest of it's value...

and also remove the listener in your close script.

// in case of bootstrap modal example:
$('#myModal').on('shown.bs.modal', function () {
  
  var documentScrollTop = $(document).scrollTop();
  $(document).on('scroll.noScroll', function() {
     $(document).scrollTop(documentScrollTop);
     return false;
  });

}).on('hidden.bs.modal', function() {

  $(document).off('scroll.noScroll');

});

update

seems, this does not work well on chrome. any suggestion to fix it ?

Community
  • 1
  • 1
Pars
  • 3,946
  • 8
  • 38
  • 77
  • This is a better variation of what I came up with. But alas, I had the problems with Chrome as well. It is is still problematic due to strange and unpredictable side effects – dgo Jan 19 '21 at 19:09
1

I had to set the viewport-height to get this working perfectly

body.modal-open {
  height: 100vh;
  overflow: hidden;
}
freedude
  • 33
  • 5
0

For those wondering how to get the scroll event for the bootstrap 3 modal:

$(".modal").scroll(function() {
    console.log("scrolling!);
});
Arie
  • 570
  • 6
  • 15
0

This is the best solution for me:

Css:

.modal {
     overflow-y: auto !important;
}

And Js:

modalShown = function () {
    $('body').css('overflow', 'hidden');
},

modalHidden = function () {
    $('body').css('overflow', 'auto');
}
ibrahimyilmaz
  • 2,169
  • 20
  • 27
0

I am using this vanilla js function to add "modal-open" class to the body. (Based on smhmic's answer)

function freezeScroll(show, new_width)
{
    var innerWidth = window.innerWidth,
        clientWidth = document.documentElement.clientWidth,
        new_margin = ((show) ? (new_width + innerWidth - clientWidth) : new_width) + "px";

    document.body.style.marginRight = new_margin;
    document.body.className = (show) ? "modal-open" : "";
};
Omer M.
  • 630
  • 7
  • 17
0

Hiding the overflow and fixing the position does the trick however with my fluid design it would fix it past the browsers width, so a width:100% fixed that.

body.modal-open{overflow:hidden;position:fixed;width:100%}
Will Bowman
  • 409
  • 8
  • 19
0

Try this code:

$('.entry_details').dialog({
    width:800,
    height:500,
    draggable: true,
    title: entry.short_description,
    closeText: "Zamknij",
    open: function(){
        //    blokowanie scrolla dla body
        var body_scroll = $(window).scrollTop();
        $(window).on('scroll', function(){
            $(document).scrollTop(body_scroll);
        });
    },
    close: function(){
        $(window).off('scroll');
    }
}); 
0

You should add overflow: hidden in HTML for a better cross-platform performance.

I would use

html.no-scroll {
    overflow: hidden;
}
Afonso
  • 101
  • 1
  • 3
0
   $('.modal').on('shown.bs.modal', function (e) {
      $('body').css('overflow-y', 'hidden');
   });
   $('.modal').on('hidden.bs.modal', function (e) {
      $('body').css('overflow-y', '');
   });
chrki
  • 5,626
  • 6
  • 28
  • 51
Fernando Siqueira
  • 472
  • 1
  • 6
  • 12
  • Please edit with more information. Code-only and "try this" answers are discouraged, because they contain no searchable content, and don't explain why someone should "try this". We make an effort here to be a resource for knowledge. – Brian Tompsett - 汤莱恩 Jul 23 '16 at 13:24
0

A small note for those in SharePoint 2013. The body already has overflow: hidden. What you are looking for is to set overflow: hidden on div element with id s4-workspace, e.g.

var body = document.getElementById('s4-workspace');
body.className = body.className+" modal-open";
ekad
  • 13,718
  • 26
  • 42
  • 44
Kristian
  • 41
  • 3
0

worked for me

$('#myModal').on({'mousewheel': function(e) 
    {
    if (e.target.id == 'el') return;
    e.preventDefault();
    e.stopPropagation();
   }
});
namal
  • 412
  • 5
  • 11
0

The above occurs when you use a modal inside another modal. When I open a modal inside another modal, the closing of the latter removes the class modal-open from the body. The fix of the issue depends on how you close the latter modal.

If you close the modal with html like,

<button type="button" class="btn" data-dismiss="modal">Close</button>

Then you have to add a listener like this,

$(modalSelector).on("hidden.bs.modal", function (event) {
    event.stopPropagation();
    $("body").addClass("modal-open");
    return false;
});

If you close the modal using javascript like,

$(modalSelector).modal("hide");

Then you have to run the command some time after like this,

setInterval(function(){$("body").addClass("modal-open");}, 300);
George Siggouroglou
  • 14,342
  • 6
  • 76
  • 78
0

Why not to do that as Bulma does? When modal is-active then add to html their class .is-clipped which is overflow: hidden!important; And thats it.

Edit: Okey, Bulma has this bug, so you must add also other things like

html.is-modal-active {
  overflow: hidden !important;
  position: fixed;
  width: 100%; 
}
b00sted 'snail'
  • 311
  • 10
  • 20
0

This works

body.modal-open {
   overflow: hidden !important;
}
Leo
  • 160
  • 2
  • 9
0

Here's my vanilla JS solution based on @jpap jquery:

let bodyElement = document.getElementsByTagName('body')[0];

// lock body scroll
    let width = bodyElement.scrollWidth;
    bodyElement.classList.add('overflow-hidden');
    bodyElement.style.width = width + 'px';

// unlock body scroll
    bodyElement.classList.remove('overflow-hidden');
    bodyElement.style.width = 'auto';
kjdion84
  • 7,044
  • 4
  • 43
  • 67
0

React , if you are looking for

useEffect in the modal that is getting popedup

 useEffect(() => {
    document.body.style.overflowY = 'hidden';
    return () =>{
      document.body.style.overflowY = 'auto';
    }
  }, [])
-1

This issue is fixed, Solution: Just open your bootstap.css and change as below

body.modal-open,
.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
  margin-right: 15px;
}

to

 body.modal-open,
.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
  /*margin-right: 15px;*/
}

Please view the below youtube video only less than 3min your issue will fix... https://www.youtube.com/watch?v=kX7wPNMob_E

Richard
  • 2,772
  • 3
  • 20
  • 36
  • Any one try with this...? – Hopeful Man Jun 20 '15 at 16:08
  • I think you misunderstood the whole question. It's not about positioning the scrollbar, it's about preventing to be able to scroll in the background with your mousewheel on pc or finger on mobile devices. – AlexioVay Dec 17 '16 at 13:36
-2

I found a working solution after doing some 8-10 hours research on StackOverflow itself.

The breakthrough

$('.modal').is(':visible');

So I have built a function to check if any modal is open which will periodically add class *modal-open** to the

 setInterval(function()
     {
         if($('.modal').is(':visible')===true)
         {
             $("body").addClass("modal-open");
         }
         else
         {
             $("body").removeClass("modal-open");
         }

     },200);

The reason to use $(".modal") here is because all modals (in Bootstrap) use class modal (fade/show is as per the state)

So my modals are now running perfectly without the body getting scrolled.

This is a bug/unheard issue in GitHub as well but nobody's bothered.

Alpha
  • 171
  • 3
  • 12
  • 2
    I'm sure this works, and it's probably even performant if it's the only thing on the page, but as your app grows adding more intervals like this will add up to the slow death of your app's performance. – Morgan Delaney Nov 22 '19 at 04:07
-6

HTML:

<body onscroll="stop_scroll()">

javascript:

function stop_scroll(){
    scroll(0,0) ;
}

If you set a flag (bool) inside stop_scroll(), you can decide when to engage it (if you want it only temporarely).

This will reset scrolling every time some element overflows the body boundaries and the windows tends to scroll (this is totally independent of scrollbars; overflow : hidden has nothing to do with it).

derei
  • 193
  • 2
  • 3
  • 17