<!--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>
Click the links for action:
<div class="marquee">jQuery marquee is the best marquee plugin in the world</div>

<br/>
<a class='p' href='#'>Pause</a> | <a class='r' href='#'>Resume</a>
.marquee {
  width: 300px;
  overflow: hidden;
  border: 1px solid #ccc;
  background: #ccc;
}
var $mq = $('.marquee').marquee();

//Pause
$('.p').click(function(){
  $mq.marquee('pause');
});

//Resume
$('.r').click(function(){
  $mq.marquee('resume');
});

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