Zoom magnify main video hide on mouseout in jQuery

88 Views Asked by At

Hi I have used the Jquery plugin for zoom magnify which is working correctly but I also want add video in that section,

I tried to write this script ,when I mouseover the thumbnail video display and when go to play main video which is right side it hides,So how will it remain display. Please guide.

 //Product detail page
$(document).on('mouseover','a.p-video',function () {
    $('.p-video-iframe').show();
});
$(document).on('mouseout','a.p-video',function () {
    $('.p-video-iframe').hide();
});

Check this image

0

There are 0 best solutions below