I use jScroller to show selection. It works great, but it always attaches my div to the top of the page than the exact position of the div ....
<div id="CaptDiv">
<div id="CaptionDiv" class="captiontext">
Find your Leads to Precede and Predate
</div>
</div>
and I applied only this css ...
.captiontext
{
font-weight:bold; color:#69442f;
font-family: Arial,Helvetica,sans-serif; font-size:105%;margin-left:70px;
}
and my jquery,
$(document).ready(function() {
$jScroller.add("#CaptDiv", "#CaptionDiv", "right", 1);
$jScroller.start();
});
alt text http://img409.imageshack.us/img409/985/marquee.jpg
source
share