jQuery offers you the ability to create namespaces for events. It looks like this:
$(document).bind('keydown.mySpace', function(evt) { }); $(document).bind('keyup.mySpace', function(evt) { });
You can .unbind() all the events that have been added to the namespace, for example:
$(document).unbind('.mySpace');
I do not know about the plugin that you talked about, but you should study the documents or even better the source. If it is well designed, you should be able to use jQuery event namespaces for this purpose.
jAndy source share