How can I temporarily disable vertical scrollbar?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hsriat
    Recognized Expert Top Contributor
    • Jan 2008
    • 1653

    How can I temporarily disable vertical scrollbar?

    How can I temporarily disable vertical scrollbar?

    I have replaced confirmation boxes and alert boxes with inlay popup DIVs. But while they are on the screen, I need to disable scrollbar of the page so that user may not access the main page (just like in conformation boxes).

    Also I need to disable the main page leaving that popup DIV.

    Scrollbar is the main issue.

    How can I do it?
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    Instead of disabling the scrollbar, use position:fixed to keep the div at the same position on the page.

    Comment

    • hsriat
      Recognized Expert Top Contributor
      • Jan 2008
      • 1653

      #3
      Originally posted by acoder
      Instead of disabling the scrollbar, use position:fixed to keep the div at the same position on the page.
      .


      ...OH!!! that's COOL!!!

      is it possible to disable the whole page other than the div itself?

      Comment

      • acoder
        Recognized Expert MVP
        • Nov 2006
        • 16032

        #4
        Yes, you can see an example here.

        Comment

        Working...