Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a popup lightbox that needs to be opened in a page using javascript. When opening the popup I need to disable the scrollbar of the browser but it should be visible. I tried the following code

$('body').css({'position' : 'fixed' ,'overflow-y':'scroll','width':'100%'});

This code will disable the scroller but it make the page jumps to the top as the popup is opening at the vertical centre of the page, which is a serious UI issue.

Also fixed may not work in IE6

share|improve this question

1 Answer

You can use some mask kind of effect with transparency, so that if the popup comes the browser is disabled and the user cannot do any actions on that.

share|improve this answer
Thanks Mohan, But masking can be applied only for the tags coming inside body right, I need to mask the browser scrolling itself – uidesigner Sep 14 '12 at 12:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.