You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to do some ajax work after your field gets filled but changes in value of hidden elements don't automatically fire the .change() event. Would it be possible to change your triggers from 'added' and 'killed' to simply 'changed'? I'm not sure where 'added' or 'killed' is documented as standard event types but I couldn't find any references http://api.jquery.com/category/events/ [here] or http://www.quirksmode.org/dom/events/ [here].
Thanks!!
The text was updated successfully, but these errors were encountered:
"killed" is definitely a bit idiosyncratic. 'removed' would have been better
but 'changed' is for models and this isn't a model. and if it was for both added/killed then you lose information and would have to differentiate them.
you should be able to subscribe to any message you like. message names aren't a fixed list, its open to define them for your application as you like.
in any case ... massive breakage for everybody else.
Hi there,
I'm trying to do some ajax work after your field gets filled but changes in value of hidden elements don't automatically fire the .change() event. Would it be possible to change your triggers from 'added' and 'killed' to simply 'changed'? I'm not sure where 'added' or 'killed' is documented as standard event types but I couldn't find any references http://api.jquery.com/category/events/ [here] or http://www.quirksmode.org/dom/events/ [here].
Thanks!!
The text was updated successfully, but these errors were encountered: