I would recommend debugging to find where these events are bound(or even if they're bound). If these are bound with jQuery, they will be viewable via .data();
eg, in a console:
$('.suspected.element').data().events
If key events are truly the cause via some plugin, I would look to modify the binding of the events, rather than adding workarounds.