Sunday, May 19, 2024
 Popular · Latest · Hot · Upcoming
101
rated 0 times [  104] [ 3]  / answers: 1 / hits: 23332  / 14 Years ago, fri, december 3, 2010, 12:00:00

Hi
Is it possible to disable browser scroll bar through java script...? If yes how?



Help me if anybody knows it...
Thanks in advance..


More From » jquery

 Answers
26

CSS



body
{
overflow: hidden;
}


javascript



document.body.style.overflow = hidden;


jQuery



$(body).css('overflow', 'hidden');

[#94754] Wednesday, December 1, 2010, 14 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
hasancolec

Total Points: 603
Total Questions: 95
Total Answers: 98

Location: South Korea
Member since Sat, Oct 2, 2021
3 Years ago
;