I'm new to JScript and trying to figure out how to subscribe to the event when a textbox is disabled or enabled. I'm currently working on an AJAX Extender Control and using JScript to subscribe like so:
$addhandler(textbox, 'EventName', Function);
So far, I've managed to get it working for click
, focus
, and blur
events, but I'm struggling with enable/disable events.
Is there a comprehensive list of events that can be hooked into anywhere? I've searched extensively but haven't found much.