How to always show the vertical scrollbar in a browser?

jQuery shouldn’t be required. You could try adding the CSS:

body    {overflow-y:scroll;}

This works across the latest browsers, even IE6.

Leave a Comment