Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

disable scroll jquery

//This will completely disable scrolling:
$('html, body').css({
    overflow: 'hidden',
    height: '100%'
});

//To restore:
$('html, body').css({
    overflow: 'auto',
    height: 'auto'
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #disable #scroll #jquery
ADD COMMENT
Topic
Name
4+2 =