$(window).on('load',function() { $('a').filter(function(e){ //return $(this).attr('href').indexOf("#popup-") != -1 ; return $(this).attr('href') != undefined && $(this).attr('href').indexOf("#popup-") != -1 }).addClass('open-popup-link'); }); $(document).ready(function() { $('a').filter(function(e){ //return $(this).attr('href').indexOf("#popup-") != -1 ; return $(this).attr('href') != undefined && $(this).attr('href').indexOf("#popup-") != -1 }).addClass('open-popup-link'); }); setTimeout(function() { $('.open-popup-link').magnificPopup({ removalDelay: 500, //delay removal by X to allow out-animation callbacks: { beforeOpen: function() { this.st.mainClass = this.st.el.attr('data-effect'); } }, midClick: true // allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source. }); }, 2000);