I would like my twitter feed to be displayed using Vticker (one tweet at a time is shown, fades up and another appears in its place). I used the directions on the site (http://www.jugbit.com/jquery-vticker-vertical-news-ticker/) which shows you how to use Vticker with another plugin, but it is not working. It seems that my twitter feed is correctly being displayed, but not being utilized by the Vticker. Chrome is not displaying any errors. Any ideas?
Code: JS:
<script>
$(document).ready(function() {
$('.tweets').jTweetsAnywhere({
username: 'twitternamehere',
count: 5
}).ajaxStop(function(){
$('.tweets').vTicker({
speed: 500,
pause: 3000,
showItems: 1,
animation: 'fade',
mousePause: false,
height: 0,
direction: 'up'
});
});
});
Thank you!