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 this function:

function block_scroll(key){
    if (key) {
        $(window).bind("scroll", function(){
            $('html, body').animate({scrollTop:0}, 'fast');
        });
    } else {
        $(window).unbind();
    }
}

The first part works as it should, but when I later call block_scroll(false) - it's still blocking. Wat do?

RE-EDIT So as suggested I tried...

$(window).unbind("scroll");

...with some confusion. At first it didn't work - then it worked.

Now I think it failed because I was scrolling the moment block_scroll(false) was called. I've tested this several times now. And yes, if I do nothing while the script runs and block_scroll(false) is called - it does work. But it doesn't if I'm scrolling when it's called.

LAST EDIT It works now. Check my answer below for further details.

share|improve this question
1  
Have you tried to unbind the scroll-event explicitly (via .unbind("scroll"))? – elusive Nov 11 '10 at 13:40
Yes, still doesn't work... – Orolin Nov 11 '10 at 13:43
1  
Does it stop if you just call block_scroll()? Otherwise, try adding $('html, body').stop(); to the else branch after unbind. – stealthyninja Nov 11 '10 at 13:47
Please, consider to use namespaced events, otherwise you will unbind all scroll events, even those defined by other libraries. – fcalderan Nov 11 '10 at 13:47
You could post the answer to this yourself and accept it. This will make it easier to understand for other visitors. – elusive Nov 11 '10 at 13:51

6 Answers

$(window).unbind('scroll');

Even though the documentation says it will remove all event handlers if called with no arguments, it is worth giving a try explicitly unbinding it.

Update

It worked if you used single quotes? That doesn't sound right - as far as I know, JavaScript treats single and double quotes the same (unlike some other languages like PHP and C).

share|improve this answer
Aww 9 seconds :) – pestaa Nov 11 '10 at 13:40
@pestaa If it makes you feel better, I've hit my rep cap :P – alex Nov 11 '10 at 13:42
Tried this. Doesn't unbind :( – Orolin Nov 11 '10 at 13:43
@alex It actually makes me feel worse. :D – pestaa Nov 11 '10 at 13:45
1  
@alex: Your update is right. JavaScript does not make a difference between single and double quotes. This is probably a browser-specific problem. @Orolin: What is your browser? – elusive Nov 11 '10 at 13:52
show 1 more comment

Try this instead

$.unbind('scroll');

http://api.jquery.com/unbind/

share|improve this answer
That example isn't correct usage. It's a method to act on a jQuery collection, not a static method. – alex Dec 11 '11 at 11:14

You need to:

unbind('scroll')

At the moment you are not specifying the event to unbind.

share|improve this answer
up vote 1 down vote accepted

Well, it works now.

I'm not quite sure what was happening, but I'm guessing it had something to do with animation queues or something. I changed the duration of the animate() effect from this:

$('html, body').animate({scrollTop:0}, 'fast');

to this:

$('html, body').animate({scrollTop:0}, 1);

and it now works perfectly. If anyone can elaborate on what the problem was, I'd appreciate it.

share|improve this answer

try this: $(window).unbind('scroll');

it works in my project

share|improve this answer

Very old question, but in case someone else stumbles across it, I would recommend trying:

$j("html, body").stop(true, true).animate({
        scrollTop: $j('#main').offset().top 
}, 300);
share|improve this answer

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.