views:

264

answers:

0

I am using fancybox to display both pop ups for video and images.

<script type="text/javascript" src="../jquery.fancybox/jquery.easing.1.3.js"></script>

<script src="../jquery.fancybox/jquery-1.3.2.min.js" type="text/javascript"></script>

<script type="text/javascript" src="../jquery.fancybox/jquery.fancybox-1.2.1.pack.js"> </script>

<script type="text/javascript">
    jQuery.noConflict();

    jQuery(document).ready(function() {
    jQuery("a#group").fancybox();
        jQuery("a#inline").fancybox({ 'hideOnContentClick': true, 'overlayShow': false, 'zoomOpacity':false ,'enableEscapeButton': true});
    });

</script>

Images are displayed fine, when closing fancybox pop up, the screen returns to it's normal state, but when displaying video and after closing the pop up the screen remains black. I am trying to test all fancybox properties like the ones above

'hideOnContentClick': true, 'overlayShow': false, 'zoomOpacity':false , 'enableEscapeButton': true

but nothing really changes. I am beginning to think that i will have to change something from outside the fancybox properites or make any editing in the fancybox javascript files.

Any idea????