On Oct 2, 2008, at 1:33 AM, Dr3adl0ck wrote:

I'd like to activate/deactivate making an edit in place field editable
depending on if a user selects something.

Is there a way in jQuery remove events associated with a class or
something to that effect?

$.unbind()

It is probably a good idea to namespace your events. So instead of binding to click bind to click.editable. Then you can later $.unbind('click.editable) to remove click events related to inline editing. Otherwise it will unbind all click events.

--
Mika Tuupola
http://www.appelsiini.net/

Reply via email to