↧
callbacks.locked()
callbacks.locked()Returns: Boolean Description: Determine if the callbacks list has been locked. version added: 1.7callbacks.locked() This method does not accept any arguments. Example: Use...
View Articlecallbacks.lock()
callbacks.lock()Returns: Callbacks Description: Lock a callback list in its current state. version added: 1.7callbacks.lock() This method does not accept any arguments. This method returns the...
View Articlecallbacks.has()
callbacks.has( [callback ] )Returns: Boolean Description: Determine whether or not the list has any callbacks attached. If a callback is provided as an argument, determine whether it is in a list....
View Articlecallbacks.fireWith()
callbacks.fireWith( [context ] [, args ] )Returns: Callbacks Description: Call all callbacks in a list with the given context and arguments. version added: 1.7callbacks.fireWith( [context ] [, args ]...
View Articlecallbacks.fired()
callbacks.fired()Returns: Boolean Description: Determine if the callbacks have already been called at least once. version added: 1.7callbacks.fired() This method does not accept any arguments....
View Articlecallbacks.fire()
callbacks.fire( arguments )Returns: Callbacks Description: Call all of the callbacks with the given arguments. version added: 1.7callbacks.fire( arguments ) arguments Type: Anything The argument or...
View Articlecallbacks.empty()
callbacks.empty()Returns: Callbacks Description: Remove all of the callbacks from a list. version added: 1.7callbacks.empty() This method does not accept any arguments. This method returns the...
View Articlecallbacks.disabled()
callbacks.disabled()Returns: Boolean Description: Determine if the callbacks list has been disabled. version added: 1.7callbacks.disabled() This method does not accept any arguments. Example: Use...
View Articlecallbacks.disable()
callbacks.disable()Returns: Callbacks Description: Disable a callback list from doing anything more. version added: 1.7callbacks.disable() This method does not accept any arguments. This method...
View Articlecallbacks.add()
callbacks.add( callbacks )Returns: Callbacks Description: Add a callback or a collection of callbacks to a callback list. version added: 1.7callbacks.add( callbacks ) callbacks Type: Function() or...
View Article
More Pages to Explore .....