The zoom effect is not working properly in bootstrap modal . the zoom window is not opening properly
`$('.qvpopup').click(function(se){
var image = $('#qvfeaturedimg');
var zoomConfig = {cursor: "crosshair"};
var zoomActive = false;
se.preventDefault();
$('#quickview').on('shown.bs.modal', function() {
zoomActive = !zoomActive;
alert('start');
if(zoomActive)
{
image.ezPlus(zoomConfig);//initialise zoom
}
else
{
$.removeData(image, 'ezPlus');//remove zoom instance from image
$('.zoomContainer').remove();// remove zoom container from DOM
}
});`
link of image you can see here how it is showing i don't know is it css issue of modal
you can check here scroll to down click on product tab and then hover on image and click on quick view button then popup will appear where you can see all the things
The zoom effect is not working properly in bootstrap modal . the zoom window is not opening properly
link of image you can see here how it is showing i don't know is it css issue of modal
you can check here scroll to down click on product tab and then hover on image and click on quick view button then popup will appear where you can see all the things