Can CSS be used to hide the scroll bar? How would you do this?
In addition to Peter's answer:
#element::-webkit-scrollbar { display: none; }
This will work the same for Internet Explorer 10:
#element { -ms-overflow-style: none; }