I want to display marquee text in div on mouse move over, marquee will pause. Please give some example or source code. Thanks in advance.
It's really not too hard, what you need to do is use the onmouseover event of the marquee tag. <marquee onmouseover="javascript:this.stop();" onmouseout="javascript:this.start();">Hello</marquee> Code (markup):