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
.once: like .on but after the callback has been triggered by an event one time it is deleted.
.off: takes an optional event name and callback -- if an event name and callback are supplied, remove the callback from listening to the given event; if only the event name is provided, remove all callbacks from that event; with no arguments removes all eventful callbacks for the given component.
The text was updated successfully, but these errors were encountered:
.once
: like.on
but after the callback has been triggered by an event one time it is deleted..off
: takes an optional event name and callback -- if an event name and callback are supplied, remove the callback from listening to the given event; if only the event name is provided, remove all callbacks from that event; with no arguments removes alleventful
callbacks for the given component.The text was updated successfully, but these errors were encountered: