I need to get notified when a user edits a n item. I can easily do this in my form on text and textarea fields with code such as:
$("#form\\-gallery :input").not('.exclude').change(function() {
process_fa('input');
});
but there seems to be no equivalent that works with JCE - I have tried setting events on various elements but nothing seems to work.