Skip to content
Loading
popup Click event on Iframe 
 
  1. $(document).ready(function () {  
  2.     $(".popup").hide();  
  3.     $(".openpop").click(function (e) {  
  4.         e.preventDefault();  
  5.         $("iframe").attr("src", $(this).attr('href'));  
  6.         $(".links").fadeOut('slow');  
  7.         $(".popup").fadeIn('slow');  
  8.     });  
  9.   
  10.     $(".close").click(function () {  
  11.         $(this).parent().fadeOut("slow");  
  12.         $(".links").fadeIn("slow");  
  13.     });  
  14. });