<script type="text/javascript">
$(function(){
$('#vertical-ticker').totemticker({
row_height : '55px',
next : '#ticker-next',
previous : '#ticker-previous',
stop : '#stop',
start : '#start',
direction : 'up',
});
});
</script>
We have a jQuery Totem Ticker in our rails app; we want it to scroll down instead of up. the plug-in's homepage says to add the following line:
direction : 'up'
But this doesn't work. How should it be done?