4

I have a webpage with a lightbox in it, inside the lightbox there is a scrollbar. I want to disable the main window scrollbar and keep the lightbox scrollbar enabled.

Not just to hide the scrollbar but to disable scrolling of the window at all (beside scrolling the lightbox).

How can I do it?

Kadosh
  • 319
  • 1
  • 3
  • 12

2 Answers2

4

You dont need jQuery. Use Stylesheet:

 html, body {
      overflow: hidden;
 }
Adrian Preuss
  • 3,228
  • 1
  • 23
  • 43
2

You probably need to call

$("body").scroll(function(e){ e.preventDefault()});

when lightbox is opened.

You also may be interested with this question.

Community
  • 1
  • 1
Michał
  • 2,456
  • 4
  • 26
  • 33