Remove Iframe SRC attribute
jQuery('#cls-<?=get_the_ID(); ?>').click(function(){
jQuery("#popModal<?=get_the_ID(); ?>").hide();
jQuery("#popModal<?=get_the_ID(); ?> iframe").attr("data-src",jQuery("#popModal<?=get_the_ID(); ?> iframe").attr("src"));
jQuery("#popModal<?=get_the_ID(); ?> iframe").removeAttr("src");
jQuery("body").removeClass('popupOn');
});
jQuery("#popModal<?=get_the_ID(); ?>").hide();
jQuery("#popModal<?=get_the_ID(); ?> iframe").attr("data-src",jQuery("#popModal<?=get_the_ID(); ?> iframe").attr("src"));
jQuery("#popModal<?=get_the_ID(); ?> iframe").removeAttr("src");
jQuery("body").removeClass('popupOn');
});
Add Iframe SRC attribute
jQuery('#popBtn<?=get_the_ID(); ?>').click(function(e){
//jQuery("#popModal<?=get_the_ID(); ?> iframe").attr("src",jQuery("#popModal<?=get_the_ID(); ?> iframe").attr("data-src"));
//jQuery("#popModal<?=get_the_ID(); ?> iframe").removeAttr("data-src");
jQuery("#popModal<?=get_the_ID(); ?>").show();
jQuery("body").addClass('popupOn');
});
//jQuery("#popModal<?=get_the_ID(); ?> iframe").attr("src",jQuery("#popModal<?=get_the_ID(); ?> iframe").attr("data-src"));
//jQuery("#popModal<?=get_the_ID(); ?> iframe").removeAttr("data-src");
jQuery("#popModal<?=get_the_ID(); ?>").show();
jQuery("body").addClass('popupOn');
});