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 have an anchor like below

<a href='...' rel='facebox'>..</a>

and use facebox like

$('#...').facebox();

But I need to unbind facebox() event dynamically, I tried the two ways as follows

$('#..').unbind('facebox'); 
$('#..').unbind('keydown.facebox');

But both don't work.

Who can help me out... ?

Thanks.

share|improve this question
Have you tried adjusting the rel attribute? I've not worked with the Facebox plug-in, but I'd assume the rel is used for something. – David Thomas Mar 15 '11 at 13:23

2 Answers

up vote 3 down vote accepted

Try:

$('#...').unbind('click.facebox');

The source code indicates that this is the name of the actual click handler.

share|improve this answer
thanks, works. – Elaine Mar 16 '11 at 1:21

Have you tried

$('#..').unbind('.facebox'); 

(notice the .) this will unbind all events in the facebox namespace. (which is what the facebox uses)

share|improve this answer
this doesn't work.. I tried unbind('click') is okay. facebox bind facebox() to clickeventhandler. – Elaine Mar 16 '11 at 1:37

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.