tags:

views:

151

answers:

2

Can you please send it to me in jquery?

+2  A: 

Try the marquee jQuery plugin.

$('#some-id').marquee().mouseover(function () { 
      $(this).trigger('stop');
   }).mouseout(function () {
      $(this).trigger('start');
   });
beggs
A: 

Why can't your use html marquee itself? Its very simple solution with plain javascript.

<marquee direction="left" width="750" height="25" scrollamount="3" scrolldelay="10" 
    onmouseover="this._scrollAmount='0'" onmouseout="this._scrollAmount='3'">
Website Hits crossed 1.1 Million, Since 1st March 2006.
</marquee>

Will this help?

rajakvk
Never, ever use this tag. Ever.
ck
@ck, please let me know why?
rajakvk