$(document).ready(function() {
$(".quickview").hover(function() {
var id = jQuery(this).attr('data-id');
$(this).magnificPopup({
type: 'iframe',
preloader: false,
focus: '#name',
items: {
src: 'index.php?route=product/quickview&path=20&product_id='+id
},
callbacks: {
beforeOpen: function() {
if($(window).width() < 700) {
this.st.focus = false;
} else {
this.st.focus = '#name';
}
}
}
});
});
});