Skip to content

Instantly share code, notes, and snippets.

@boazsender
Created April 13, 2011 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boazsender/918000 to your computer and use it in GitHub Desktop.
Save boazsender/918000 to your computer and use it in GitHub Desktop.
<script src="http://code.jquery.org/jquery.js"></script>
<script src="https://github.com/cowboy/jquery-throttle-debounce/raw/master/jquery.ba-throttle-debounce.min.js"></script>
<script src="http://butterapp.org/butter/popcorn-js/popcorn.js"></script>
<script>
// Pause the video when the user hovers over one of the plugins
// for more than 500 milliseconds
$('.butter-plugin').hover(
$.debounce(500, function(e){
$p.pause()
}),
function(){
$p.play();
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment