I have a div element on my website with the overflow property set to auto, which displays a scrollbar when the content overflows. I'm looking for a way to hide this scrollbar while still allowing users to scroll within the div. Any assistance would be greatly appreciated. If CSS doesn't offer a solution, I would prefer jQuery code since I'm not very familiar with JavaScript.
Below is the HTML for the div:
<div id="content"><!-- Content dynamically loaded from a database using PHP --></div>
And here is the CSS for that div:
#content {width:100%; overflow:auto; position:absolute; top:30px; left:0px;}