I’m using a jQuery UI plugin that captures mouse/keyboard clicks (ui.selectable.js) and doesn’t seem to propagate it further.
Is there some trick I can use to capture keydown or mouse* events in my code even for elements where the plugin is already listening for these events and not propagating them?
maybe the live() method is what you are searching for to capture the specified events e.g. “mouseover” or “keydown” if they are already captured by your plugin.
Note that you’ll have to use jQuery 1.4 to bind more than one live event of the same type to an object – if I remember the release notes correctly 😉
btw: you are able to stop the plugin for specific objects by using die() or unbind()