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.

Okay so I'm always paranoid about asking questions too quickly, but I have spent hours wrestling with this and can't seem to find an exact scenario, or at least close enough to figure out how to fix it.

I'm using jQuery Fancybox plugin: http://fancyapps.com/fancybox/#docs

Here's the basic structure:

<script type="text/javascript">
    jQuery(document).ready(function($) {
        $(".fancybox").fancybox({
            'width': 750,
            'autoDimensions': false
          });
      });
</script>

<a class="fancybox" href="#myhiddenstuff">OPEN FANCYBOX</a>

<div id="myhiddenstuff" style="display: none;">
    All my content here.
    An ajax link that changes the contents within this DIV.
</div>

So how this thing works is it loads the content into the DOM and ajax within obviously doesn't reflect changes until fancybox is reloaded.

So basically, I need to figure out how to dynamic listen/reload fancybox on any click events but retain a smooth user experience... meaning, I don't want it to close and reopen, etc. There have been several forums with people singing the praises of figuring this out, but I just don't quite understand it.

A good example would be, clicking to open fancybox loads an authenticated users favorite pictures, and they can remove those pictures one at a time from their favorites. When clicking the remove button, nothing appears to happen because content isn't reloading... but when fancybox is closed and re-opened, you can see the changed content. It works outside of fancybox perfectly.

Please help!!! Thank you all so much.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.