$(document).ready(function(){
    $(window).load(function(){
        if ($('html').width() > 959)
            $('html').css('overflow-x', 'hidden');
        else
            $('html').css('overflow-x', 'auto');
        }
    );
    $(window).resize(function(){
        if ($('html').width() > 959)
            $('html').css('overflow-x', 'hidden');
        else
            $('html').css('overflow-x', 'auto');
    });

});

