Hey all, hoping someone can help me with a workaround. I've got an event set to fire when a textbox changes or loses focus- no problems. However, when the user clicks into the box and Right Click--> Pastes a value into it, I can't get any event to fire. I've tried onClick, OnChange, OnMouseDown, onMouseUp, onKeyDown, and onKeyUp.
[code=html]
<input type='text' onChange="alert ('Changed')" onClick="alert( 'Clicked')" onMouseDown="al ert('onMouseDow n')" onMouseUp="aler t('onMouseUp')" onKeyDown="aler t('onKeyDown')" onKeyUp="alert( 'onKeyUp')">[/code]
I know I can do one of those stupid IE named scripts, but I was hoping someone somewhere had a multi-browser compliant solution!
[code=html]
<input type='text' onChange="alert ('Changed')" onClick="alert( 'Clicked')" onMouseDown="al ert('onMouseDow n')" onMouseUp="aler t('onMouseUp')" onKeyDown="aler t('onKeyDown')" onKeyUp="alert( 'onKeyUp')">[/code]
I know I can do one of those stupid IE named scripts, but I was hoping someone somewhere had a multi-browser compliant solution!
Comment