7of9 Hi. Script is showing an error in console.
(index):84 Uncaught TypeError: Cannot read property 'on' of null
lets try to change it a little:
var disable_click_flag = false;
$(window).scroll(function() {
disable_click_flag = true;
clearTimeout($.data(this, 'scrollTimer'));
$.data(this, 'scrollTimer', setTimeout(function() {
disable_click_flag = false;
}, 250));
});
$('body a').click(function(e){
if( disable_click_flag ){
e.preventDefault();
}
});