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
jQuery parser in jQueryGeneric() has for ... in loop on array of event handlers. When oEvents is Array (at least in jQuery 1.6.4) and some custom methods are added to Array.prototype (e.g. shuffle etc.), they all are enumerated in this loop and added as handlers for this particular event:
jQuery parser in
jQueryGeneric()
hasfor ... in
loop on array of event handlers. WhenoEvents
isArray
(at least in jQuery 1.6.4) and some custom methods are added toArray.prototype
(e.g.shuffle
etc.), they all are enumerated in this loop and added as handlers for this particular event:If
oEvents
isArray
in all jQuery versions then better will be usualfor
loop.The text was updated successfully, but these errors were encountered: