I'm using the mousewheel.js jquery plugin https://github.com/jquery/jquery-mousewheel
How can I disable the 'mousewheel' event temporarily?
Or how can I unbind it and bind it after some time?
$(window).on('mousewheel', function(event) {
});
Thanks!