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