<!--You need to include following plugin for pauseOnHover. If browser supports CSS3 animation than we don't need this plugin but its better as a fallback for older browsers-->
<srcipt src="https://rawgithub.com/tobia/Pause/master/jquery.pause.js"></script>
Hover over marquee to pause (check HTML tab):
<div class="marquee">jQuery marquee is the best marquee plugin in the world</div>
.marquee {
  width: 300px;
  overflow: hidden;
  border: 1px solid #ccc;
  background: #ccc;
}
$mq = $('.marquee').marquee();

//stop
$mq.marquee('pause');

//on hover start
$mq.hover(function(){
  $mq.marquee('resume');
}, function(){
  $mq.marquee('pause');
})

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. //cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js
  2. //cdn.jsdelivr.net/jquery.marquee/1.3.1/jquery.marquee.min.js