I'm having an issue with getting the fancybox iframe to load in the browser. I'm not sure what it is (I feel like it's something dumb) and I could use a hand.
The compiler has the lightbox working properly, but when I move it into my browser it's breaking. I thought it was an issue with my server, but when I open up the file directly from my desktop it still gives the same error. Any help is appreciated!
Javascript
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="http://image.iloqal.com/lib/fe5c1570746107757c1c/m/1/DTVLBjqueryfancybox2.js"></script>
<link rel="stylesheet" type="text/css" href="http://image.iloqal.com/lib/fe5c1570746107757c1c/m/1/DTVLBjqueryfancybox.css" media="screen" />
<script type="text/javascript">
$(document).ready(function() {
$("#various3").fancybox({
'width' : 1000,
'height' : 500,
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});
});
</script>
HTML
<a id="various3" class="iframe" href="http://www.google.com">Iframe</a>