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 currently have Fancybox open a hidden_div afterShow()

There is a link on hidden_div that calls this function:

        $('#image_tagged').html('');       // these work
        $('#image_name_tagged').hide();    // these work
        $('#image_tagged_fancybox').live("remove icons", function(){  // this does not work
            $(this).html('');
        });
        $('#image_tagged_fancybox_name').hide();  // this does not work
    }
});

The jQuery with #image_tagged and #image_name_tagged work -- these IDs are not on top of the fancybox-overlay (the hidden tab after fancybox is called).

The jQuery with #image_tagged_fancybox (the jQuery called from links within the hidden tab) do not work. Interestingly...

$('#image_tagged_fancybox_name').html();

still gives me the correct information.

Any help would be appreciated!

share|improve this question
1  
1. I would suggest you using on rather than live. 2. remove icons is it a custom event ? – Furqan Jul 7 '12 at 8:16
I have never seen the remove icons event either. – JFK Jul 7 '12 at 8:25
Even if I simply used $('#image_tagged_fancybox').html(''); it will not work – Delos Chang Jul 7 '12 at 15:44
If you pretend to write an white space with $('#image_tagged_fancybox').html(''); then use $('#image_tagged_fancybox').empty(); instead – JFK Jul 7 '12 at 19:01

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.