vote up 0 vote down star

In my app I have 2 divs, one with a long list of products that can be dragged into another div (shopping cart). The product div has the overflow but it breaks prototype draggable elements. The prototype hacks are very obtrusive and not compatible with all browsers.

So I am taking a different approach, is it possible to have a scrollable div without using CSS overflow:auto??

flag

2 Answers

vote up 1 vote down

You can use a frame with content larger than its window. Might make it hard to pass JS events though.

link|flag
vote up 2 vote down

Theres a css property to control that.

<div style="width:100px;height:100px;overflow:scroll">
</div>

http://www.w3schools.com/Css/pr_pos_overflow.asp

link|flag
The title says "without overflow:auto", sorry but thats exactly what overflow:scroll is. – dMix Dec 16 '08 at 21:47
I agree. Why would this get voted up? – thrashr888 Dec 22 '08 at 7:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.