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.

As you can see in the onComplete definition I am trying to access the HTML of the specific DIV that is currently being launched, but the bind call is done by class. If I have many DIVs all of the same class it is bound properly, this means that when I click the ".opener" anchor it pops up the proper content. However I can't figure out how to access that content from the onComplete function as it only ever gives back the first ".opener" every time, regardless of which one is being launched. Any ideas?

initFancyBox: function() {
    //ie hack for fancy box
    if ($(".dialog").length > 0 || $(".imageDetail").length > 0) {
        $(".opener").fancybox({
            'titlePosition': 'inside',
            'transitionIn': 'none',
            'transitionOut': 'none',
            'type': 'inline',
            'onComplete': function(){
                alert($(".opener").parent().html());                    
            }
        });
    } else {
        $(".opener").fancybox({
            'titlePosition': 'inside',
            'transitionIn': 'none',
            'transitionOut': 'none',
            'type': 'image'
        });

    }
}
share|improve this question
possible duplicate of Fancybox: Get id of clicked anchor/element – ioSamurai Jan 6 '11 at 17:54

1 Answer

up vote 1 down vote accepted

If you want to do something for each of your items from the selector, try using something like:

$('.opener').each(function()
{

});
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.