I am using jQuery vTicker, But I want the whole list which user can view using the scrollbar. I don’t want dynamic scroll bar. Just a simple scroll bar.
This is what I am doing.
HTML:
<div id="liveData" style="max-height: 490px; overflow: auto;">
<div class="live-feeds">
<ul>
<li>
/*Live data here*/
</li>
</ul>
</div>
</div>
JS:
$('.live-feeds').vTicker({
speed: 800,
pause: 2000,
animation: 'fade',
height: 490,
mousePause: true,
showItems: 50
});
Does anyone have any idea how do I do this.
add
to your (.live-feeds).vTicker JS
your js should really be