I\'m trying to pause the slider on the homepage when a video is played so it doesn\'t keep sliding. Check it out here.
I\'ve tried adding a div
on top o
You can use this jQuery plugin : https://github.com/finalclap/iframeTracker-jquery.
Select the vimeo player iframe with a jQuery selector and set a callback function that will turn off the slider (or do anything else) :
jQuery(document).ready(function($){
$('.vimeo_player iframe').iframeTracker({
blurCallback: function(){
// Stop your slider
}
});
});