Reputation: 1032
My iframe works fine with my internal pages however it fails when I set the source url to Google.
Here is my code, i'm using version 2 (latest)
<script language="javascript" type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript" src="../js/fancybox/jquery.fancybox.pack.js"></script>
<link rel="stylesheet" type="text/css" href="../js/fancybox/jquery.fancybox.css" media="screen" />
<script type="text/javascript">
$(document).ready(function() {
$(".various").fancybox({
maxWidth : 800,
maxHeight : 600,
fitToView : false,
width : '70%',
height : '70%',
autoSize : false,
closeClick : false,
openEffect : 'none',
closeEffect : 'none'
});
});
</script>
<a href="http://www.google.com/search?q=android" class="various fancybox.iframe">Open iframe</a>
Upvotes: 2
Views: 6502
Reputation: 41143
It is not a fancybox issue. Google doesn't like to be contained within iframes anymore due to changes in their adSense program policies.
Upvotes: 4