css always show scrollbar code example
Example 1: html always show scrollbar
jQuery shouldn't be required. You could try adding the CSS:
body {overflow-y:scroll;}
This works across the latest browsers, even IE6.
Example 2: hide the scrollbar in css if not overflow
.myClass {
/*auto will remove and add the scroll bar as needed*/
overflow: auto;
}