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.