On my webpage I have a div with a overflow property set to auto - if content is too big, a scrollbar appears. Now I would like to make this scrollbar invisible, so that I could still scroll inside this div, but without seeing the bar. I would really appreciate some help. Also if I can't do this with CSS, I would prefer jQuery code, as I don't know javascript very well.
Here is that div:
<div id="content"><!-- some content loaded from database with php --></div>
And css for that:
#content {width:100%; overflow:auto; position:absolute; top:30px; left:0px;}