marquee tag stop on hover 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);
    });
});

Example 3: marquee tag stop on hover

<marquee behavior="scroll" direction="left" onmouseover="this.stop();" onmouseout="this.start();">
    Go on... hover me (and hold the mouse over)!
</marquee>

Tags:

Misc Example