Hi,
I'd like to fire a custom event in the .text() function in jQuery. It seems like this should be possible but i'm having some trouble figuring out the closures(?). something like:
jQuery.fn.text = function(){
_text = jQuery.fn.text;
// fire a custom event/do something
jQuery.apply(_text,arguments);
}