Dynamic Child Element Heights with jQuery simplyScroll
simplyScroll is a compact little jQuery plugin that auto-scrolls child elements of a container div that you call it on with jQuery. So, for example if you have the following unordered list: <ul id="list"> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> Then you can call simplyScroll on the list as follows: $(document.ready(function(){ $("#list").simplyScroll({ autoMode: ‘loop’ [...]