suraj jain
suraj jain

Reputation: 1032

Unable to load google in iframe in fancybox

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

Answers (1)

Related Questions