I\'m searching for a jquery plugin that will bound text inside a scrollable box. Most of the scroll plugins are converting the browser scroll bar but I want to keep that as it i
If you need to dynamically do this to elements, just wrap the content in a CSS: JS: Demo: http://jsfiddle.net/nW7uH/ If not, just give those elements the class .scroll {
overflow: auto;
max-height: 100px;
}
$(document).ready(function() {
$('.elements_that_should_scroll').wrap($('
scroll
and it should work just fine without JS.