$(document).ready(function(){ //see http://api.jquery.com/hover/ for info on .hover() $('#video').seeThru({start:'external'}).hover(function(){ //handler for mouseover this.play(); }, function(){ //handler for mouseout this.pause(); }); });