JavaScript
- 17 ответов
- 0 вопросов
19
Вклад в тег
$("#myform input:text").each(function(index, formField) {
data[formField.name] = $(formField).val();
})
$("#myform input[name=abc]")[0].value;
function pixflow_portfolioPopup() {
'use strict';
$('body').on('click',".inside .item-wrap.portfolio-popup",function(e){
var element= e.target || e.srcElement;
if ((e.which != 2) ) { // <-- убрал проверку ширины экрана здесь.
if (element.attributes.class.nodeValue.indexOf('icon') < 0) {
$.magnificPopup.open({
items: {
src: $(this).find(".item-image").attr('data-src')
},
overflowY:'scroll',
type: 'image',
closeOnContentClick: false,
closeBtnInside: false,
mainClass: 'mfp-with-zoom mfp-img-mobile',
callbacks: {
beforeOpen: function () {
},
afterClose: function () {
$("html").css({'overflow-y': 'auto'});
},
}
}, 0);
}
}
});
$('body').on('click', ".outside .item-image.portfolio-popup", function () {
//убрал проверку ширины экрана здесь.
$.magnificPopup.open({
items: {
src: $(this).attr('data-src')
},
overflowY:'scroll',
type: 'image',
closeOnContentClick: false,
closeBtnInside: false,
mainClass: 'mfp-with-zoom mfp-img-mobile',
callbacks: {
beforeOpen: function () {
},
afterClose: function () {
$("html").css({'overflow-y': 'auto'});
},
}
}, 0);
});
}