$(function () { $('.thumb').each(function () { $(this).magnificPopup({ delegate: 'a', type: 'image', removalDelay: 400, gallery: { enabled: true }, callbacks: { open: function () { $('.mfp-img') .attr('draggable', 'false') .css({ '-webkit-touch-callout': 'none', '-webkit-user-select': 'none', 'user-select': 'none', '-webkit-user-drag': 'none' }); } } }); }); $(document).on('contextmenu', '.thumb a, .thumb img, .mfp-img', function (e) { e.preventDefault(); return false; }); $(document).on('dragstart', '.thumb img, .mfp-img', function (e) { e.preventDefault(); return false; }); });