mouse hover marquee stop code example
Example 1: marquee tag stop on hover
<marquee onMouseOver="this.stop()" onMouseOut="this.start()">Text</marquee>
Example 2: marquee tag stop on hover
$(function() {
$('marquee').mouseover(function() {
$(this).attr('scrollamount',0);
}).mouseout(function() {
$(this).attr('scrollamount',5);
});
});