FancyBox not displaying html page-Collection of common programming errors
It may not be working because you have some syntax errors and invalid options here:
$(document).ready(function() {
$("a.iframe").fancybox({
'type' : 'iframe'
'frameWidth':500,
'frameHeight':500,
});
});
…so try this :
$(document).ready(function() {
$("a.iframe").fancybox({
'type' : 'iframe', //
Originally posted 2013-11-29 06:18:12.