Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

(http://www.kamgar.nl/test)

<html>
<head>
    <title>Tester</title>

    <link rel="stylesheet" href="helpers/jquery.fancybox-thumbs.css?v=2.0.6" type="text/css" media="screen" />

    <script type="text/javascript">
        $(document).ready(function() {
            $("#popups").fancybox({
                maxWidth    : 800,
                maxHeight   : 600,
                fitToView   : false,
                width       : '70%',
                height      : '70%',
                autoSize    : false,
                closeClick  : false,
                openEffect  : 'none',
                closeEffect : 'none'
            });
        });
    </script>

</head>
<body>

        <a id="popups" href="#servicesRecovery">Open</a>

        <div style="display:none;">
            <div id="servicesRecovery">Hello!</div>
        </div>

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.fancybox.pack.js"></script>
</body>

...I get nothing at all, no error, nothing, what am I doing wrong?!

Someone please help me out with this, as I'm going bald by the minute!

Thanks!

share|improve this question

1 Answer

up vote 0 down vote accepted

Move these:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.fancybox.pack.js"></script>

... above your fancybox custom script ... or move your fancybox custom script below these lines. It is just a matter or initialization order.

EDIT: I just checked your sample website and you are missing a proper DOCTYPE and the fancybox CSS file (you added the thumbs CSS file only)

share|improve this answer
Thanks JFK! Some eagle eye you have there, all working with your pointers. – dejunky Apr 23 '12 at 0:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.