Very Simple, Very Smooth, JavaScript Marquee
hiya simple demo from recommendations in above comments: http://jsfiddle.net/FWWEn/ with pause functionality on mouseover: http://jsfiddle.net/zrW5q/ hope this helps, have a nice one, cheers! (function($) { $.fn.textWidth = function() { var calc=”<span style=”display:none”>” + $(this).text() + ‘</span>’; $(‘body’).append(calc); var width = $(‘body’).find(‘span:last’).width(); $(‘body’).find(‘span:last’).remove(); return width; }; $.fn.marquee = function(args) { var that = $(this); var textWidth … Read more