I've created a lot of Circles. And so when I hover over the "Add to Circles" google plus button, a small div pops up that allows me to vertically scroll through my circles.

The really cool part is that it disable body scrolling. So when I scroll to the bottom of the circles viewer, the body doesn't budge.

How is this possible with javascript?

(I've found a hacky way to do it:

$('body').css({'overflow':'hidden'});
$(document).bind('scroll',function () { 
window.scrollTo(0,0); 
});

But Google does it better. The body scroll bar stays in place (it doesn't vanish like my code makes it), and the body is still unscrollable...)

It's important to note (and so far overlooked) that the scroll bar on the body page has to stay in place. It can't vanish like overflow:hidden makes it, because that jerks all of the page content to the right. Google solves this problem somehow...

SCREENSHOT: enter image description here

link|improve this question

71% accept rate
Maybe you can add a screenshot? Which page are you exactly talking about? – Felix Kling Aug 1 '11 at 20:00
Just go to plus.google.com (and login) and check out the Add to Circles area in the right sidebar. – Danny Anges Aug 2 '11 at 8:37
@Felix Kling: Added. – Danny Anges Aug 3 '11 at 14:25
1  
we had this question quite a few times... try the search function – Fender Aug 3 '11 at 14:27
@Fender: It hasn't been answered correctly. – Danny Anges Aug 3 '11 at 19:27
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

Try using :

$(document).bind('scroll',function (e) {
    e.preventDefault();
    e.stopPropagation();
    return false;
});
link|improve this answer
Nope. Doesn't work. – Danny Anges Aug 4 '11 at 8:00
feedback

Your Answer

 
or
required, but never shown

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