$(document).ready(function() { // ============================================================== // Auto select sub navbar // ============================================================== var str = location.href.toLowerCase(); $('.sub-navbar>li>a').each(function() { if (str.indexOf(this.href.toLowerCase()) > -1) { $(".sub-navbar>li.active").removeClass("active"); $(this).parent().addClass("active"); } }); $('li.active').parents().each(function() { if ($(this).is('li')) { $(this).addClass("active"); } }); $('.popup-gallery').magnificPopup({ delegate: 'a', type: 'image', tLoading: 'Loading image #%curr%...', mainClass: 'mfp-img-mobile', gallery: { enabled: true, navigateByImgClick: true, preload: [0, 1] // Will preload 0 - before current, and 1 after the current image }, image: { tError: 'The image #%curr% could not be loaded.' } }); });