This my code:
<a href="url" class="fancybox">Text</a>
jQuery(document).ready(function() {
jQuery(".fancybox").fancybox({
'overlayShow': true,
'hideOnContentClick': false
});
});
The box is displayed, the content is loaded but in the error console of chrome "Uncaught TypeError: Cannot call method 'width' of undefined".
The box can be closed but then it is not possible to open it again.
I am using FB 1.3.4 and jQuery 1.5.1.