up vote 0 down vote favorite
1
share [g+] share [fb]

Does anyone know of a great jquery scrollable div (scrolls with window.scroll) that will only scroll within a div, i dont want to use position:fixed; as people have small browsers and might have it smaller than my div and cut it off?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Have you happened to try

div { overflow: scroll; }
link|improve this answer
feedback

Have you considered ScrollTo?

link|improve this answer
feedback

Try:

<div class="scrolling"> 
 If I put too much content in this div such that it overflows it size, scrollbars will appear.
<div>

<style type="text/css"> 
  div.scrolling { height: 100px; width: 100px; overflow: auto; } 
</style>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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