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.

I followed the suggestion here Open html page within fancybox, and read up the examples in fancybox.net, and managed to get it half done.

What's been successful so far: * pointing the cursor on the icon shows the full, correct URL * for testing, the external HTML page shows "Hi" and contains nothing else * clicking on the icon brings up the fancybox

What's not working: * the content of the fancybox reads "The requested content cannot be loaded. Please try again later."

What am I doing wrong?

Here is the code:

HTML:

< div id="container" style="bottom: 0px; left: 2px; position: fixed; width:40px; z-index: 999999;">
    <br>
    < a id="single_1" href="helpme.html">
        <img src="catalog/view/theme/default/image/helpme.png"/>
    </a>
    <br>
< /div>

JS:

$(document).ready(function() {
    $('.fancybox').fancybox();
    $('#single_1').fancybox({
        helpers: {
            title : {
                type : 'float'
            }
        }
    });
share|improve this question
what version of fancybox? – JFK Oct 14 '12 at 19:58

1 Answer

Got it working with 5 mins, with colorbox.

share|improve this answer

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.