The YUI global namespace object. If YUI is already defined, the existing YUI object will not be overwritten so that defined namespaces are preserved. It is the constructor for the object the end user interacts with. As indicated below, each instance has full custom event support, but only if the event system is available. This is a self-instantiable factory function. You can invoke it directly like this:
YUI().use('*', function(Y) {
// ready
});
But it also works like this:
var Y = YUI();
Configuring the YUI object:
YUI({
debug: true,
combine: false
}).use('node', function(Y) {
//Node is ready to use
});
See the API docs for the Config class for the complete list of supported configuration properties accepted by the YUI constuctor.
_attachr
[moot=false]
Executes the function associated with each required module, binding the module to the YUI instance.
_configo
Old way to apply a config to the instance (calls applyConfig under the hood)
o
Object
The config to apply
_getTypeIf the instance has a prefix attribute and the event type is not prefixed, the instance prefix is applied to the supplied type.
_initInitialize this YUI instance
_monitorwhat
type
o
This is the entry point for the event monitoring system. You can monitor 'attach', 'detach', 'fire', and 'publish'. When configured, these events generate an event. click -> clickattach, clickdetach, click_publish -- these can be subscribed to like other events to monitor the event system. Inividual published events can have monitoring turned on or off (publish can't be turned off before it it published) by setting the events 'monitor' config.
_notifycallback
response
args
Notify handler from Loader for attachment/load errors
_parseTypeReturns an array with the detach key (if provided), and the prefixed event name from _getType Y.on('detachcategory| menu:click', fn)
_setupFinishes the instance setup. Attaches whatever modules were defined when the yui modules was registered.
_useargs
*callback
This private method is called from the use method queue. To ensure that only one set of loading
logic is performed at a time.
addname
fn
version
details
Registers a module with the YUI global. The easiest way to create a first-class YUI module is to use the YUI component build tool.
http://yuilibrary.com/projects/builder
The build system will produce the YUI.add wrapper for you module, along
with any configuration info required for the module.
name
String
module name.
fn
Function
entry point into the module that is used to bind module to the YUI instance.
version
String
version string.
details
Object
optional config data:
requires
Array
features that must be present before this module can be attached.
optional
Array
optional features that should be present if loadOptional is defined. Note: modules are not often loaded this way in YUI 3, but this field is still useful to inform the user that certain features in the component will require additional dependencies.
use
Array
features that are included within this module which need to be attached automatically when this module is attached. This supports the YUI 3 rollup system -- a module with submodules defined will need to have the submodules listed in the 'use' config. The YUI component build tool does this for you.
YUI.add('davglass', function(Y, name) {
Y.davglass = function() {
alert('Dav was here!');
};
}, '3.4.0', { requires: ['yui-base', 'harley-davidson', 'mt-dew'] });
addTargeto
Registers another EventTarget as a bubble target. Bubble order is determined by the order registered. Multiple targets can be specified.
Events can only bubble if emitFacade is true.
Included in the event-custom-complex submodule.
o
EventTarget
the target to add
aftertype
fn
[context]
[args*]
Like on(), this method creates a subscription to a custom event or to the
execution of a method on an object.
For events, after() subscribers are executed after the event's
defaultFn unless e.preventDefault() was called from an on() subscriber.
See the on() method for additional subscription
options.
NOTE: The subscription signature shown is for events, not for function
injection. See Y.Do.after
for that signature.
aggregatereceiver
supplier
[overwrite=false]
[whitelist]
Copies object properties from the supplier to the receiver. If the target has the property, and the property is an object, the target object will be augmented with the supplier's value.
receiver
Object
Object to receive the augmentation.
supplier
Object
Object that supplies the properties with which to augment the receiver.
[overwrite=false]
Boolean
optional
If true, properties already on the receiver
will be overwritten if found on the supplier.
[whitelist]
String[]
optional
Whitelist. If supplied, only properties in this list will be applied to the receiver.
allselector
Retrieves a NodeList based on the given CSS selector.
selector
String
The CSS selector to test against.
applyConfigo
Static method on the Global YUI object to apply a config to all YUI instances.
It's main use case is "mashups" where several third party scripts are trying to write to
a global YUI config at the same time. This way they can all call YUI.applyConfig({}) instead of
overwriting other scripts configs.
o
Object
the configuration object.
YUI.applyConfig({
modules: {
davglass: {
fullpath: './davglass.js'
}
}
});
YUI.applyConfig({
modules: {
foo: {
fullpath: './foo.js'
}
}
});
YUI().use('davglass', function(Y) {
//Module davglass will be available here..
});
applyConfigo
Applies a new configuration object to the YUI instance config. This will merge new group/module definitions, and will also update the loader cache if necessary. Updating Y.config directly will not update the cache.
o
Object
the configuration object.
applyToid
method
args
Executes a method on a YUI instance with the specified id if the specified method is whitelisted.
assertcondition
message
Asserts that a given condition is true. If not, then a Y.Assert.Error object is thrown and the test fails.
augmentreceiver
supplier
[overwrite=false]
[whitelist]
[args]
Augments the receiver with prototype properties from the supplier. The receiver may be a constructor function or an object. The supplier must be a constructor function.
If the receiver is an object, then the supplier constructor will be called
immediately after receiver is augmented, with receiver as the this object.
If the receiver is a constructor function, then all prototype methods of supplier that are copied to receiver will be sequestered, and the supplier constructor will not be called immediately. The first time any sequestered method is called on the receiver's prototype, all sequestered methods will be immediately copied to the receiver's prototype, the supplier's constructor will be executed, and finally the newly unsequestered method that was called will be executed.
This sequestering logic sounds like a bunch of complicated voodoo, but it makes it cheap to perform frequent augmentation by ensuring that suppliers' constructors are only called if a supplied method is actually used. If none of the supplied methods is ever used, then there's no need to take the performance hit of calling the supplier's constructor.
receiver
Function | Object
Object or function to be augmented.
supplier
Function
Function that supplies the prototype properties with which to augment the receiver.
[overwrite=false]
Boolean
optional
If true, properties already on the receiver
will be overwritten if found on the supplier's prototype.
[whitelist]
String[]
optional
An array of property names. If specified, only the whitelisted prototype properties will be applied to the receiver, and all others will be ignored.
[args]
Array | Any
optional
Argument or array of arguments to pass to the supplier's constructor when initializing.
beforeExecutes the callback before a DOM event, custom event or method. If the first argument is a function, it is assumed the target is a method. For DOM and custom events, this is an alias for Y.on.
For DOM and custom events: type, callback, context, 0-n arguments
For methods: callback, object (method host), methodName, context, 0-n arguments
bindf
c
args
Returns a function that will execute the supplied function in the supplied object's context, optionally adding any additional supplied parameters to the beginning of the arguments collection the supplied to the function.
bubbleevt
Propagate an event. Requires the event-custom-complex module.
evt
CustomEvent
the custom event to propagate
cachedsource
[cache={}]
[refetch]
Returns a wrapper for a function which caches the return value of that function, keyed off of the combined string representation of the argument values provided when the wrapper is called.
Calling this function again with the same arguments will return the cached value rather than executing the wrapped function.
Note that since the cache is keyed off of the string representation of arguments
passed to the wrapper function, arguments that aren't strings and don't provide
a meaningful toString() method may result in unexpected caching behavior. For
example, the objects {} and {foo: 'bar'} would both be converted to the
string [object Object] when used as a cache key.
source
Function
The function to memoize.
[cache={}]
Object
optional
Object in which to store cached values. You may seed this object with pre-existing cached values if desired.
[refetch]
Any
optional
If supplied, this value is compared with the cached value
using a == comparison. If the values are equal, the wrapped function is
executed again even though a cached value exists.
clearDataname
Clears internally stored data.
name
String
The name of the field to clear. If no name is given, all data is cleared.
clearDataname
Clears data on all Node instances bound to the NodeList.
name
String
The name of the field to clear. If no name is given, all data is cleared.
cloneo
safe
f
c
owner
cloned
Deep object/array copy. Function clones are actually wrappers around the original function. Array-like objects are treated as arrays. Primitives are returned untouched. Optionally, a function can be provided to handle other data types, filter keys, validate values, etc.
o
Object
what to clone.
safe
Boolean
if true, objects will not have prototype items from the source. If false, they will. In this case, the original is initially protected, but the clone is not completely immune from changes to the source object prototype. Also, cloned prototype items that are deleted from the clone will result in the value of the source prototype being exposed. If operating on a non-safe clone, items should be nulled out rather than deleted.
f
Function
optional function to apply to each item in a collection; it will be executed prior to applying the value to the new object. Return false to prevent the copy.
c
Object
optional execution context for f.
owner
Object
Owner object passed when clone is iterating an object. Used to set up context for cloned functions.
cloned
Object
hash of previously cloned objects to avoid multiple clones.
delegatetype
fn
el
filter
context
args
Sets up event delegation on a container element. The delegated event will use a supplied filter to test if the callback should be executed. This filter can be either a selector string or a function that returns a Node to use as the currentTarget for the event.
The event object for the delegated event is supplied to the callback function. It is modified slightly in order to support all properties that may be needed for event delegation. 'currentTarget' is set to the element that matched the selector string filter or the Node returned from the filter function. 'container' is set to the element that the listener is delegated from (this normally would be the 'currentTarget').
Filter functions will be called with the arguments that would be passed to the callback function, including the event object as the first parameter. The function should return false (or a falsey value) if the success criteria aren't met, and the Node to use as the event's currentTarget and 'this' object if they are.
type
String
the event type to delegate
fn
Function
the callback function to execute. This function will be provided the event object for the delegated event.
el
String | Node
the element that is the delegation container
filter
String | Function
a selector that must match the target of the event or a function that returns a Node or false.
context
Object
optional argument that specifies what 'this' refers to.
args
Object
multiple
0..n additional arguments to pass on to the callback function. These arguments will be added after the event object.
destroyDestroys the YUI instance
detachtype
fn
context
Detach one or more listeners the from the specified event
type
String | Object
Either the handle to the subscriber or the type of event. If the type is not specified, it will attempt to remove the listener from all hosted events.
fn
Function
The subscribed function to unsubscribe, if not supplied, all subscribers will be removed.
context
Object
The custom object passed to subscribe. This is optional, but if supplied will be used to disambiguate multiple listeners that are the same (e.g., you subscribe many object using a function that lives on the prototype)
detachAlltype
Removes all listeners from the specified event. If the event type is not specified, all listeners from all hosted custom events will be removed.
type
String
The type, or name of the event
dumpo
d
Returns a simple string representation of the object or array. Other types of objects will be returned unprocessed. Arrays are expected to be indexed.
eacho
f
c
proto
Executes the supplied function for each item in a collection. Supports arrays, objects, and NodeLists
errormsg
e
src
Report an error. The reporting mechanism is controlled by
the throwFail configuration attribute. If throwFail is
not specified, the message is written to the Logger, otherwise
a JS error is thrown. If an errorFn is specified in the config
it must return true to keep the error from being thrown.
extendr
s
px
sx
Utility to set up the prototype, constructor and superclass properties to support an inheritance strategy that can chain constructors and methods. Static members will not be inherited.
failmessage
Forces an assertion error to occur. Shortcut for Y.Assert.fail().
message
String
(Optional) The message to display with the failure.
firetype
arguments
Fire a custom event by name. The callback functions will be executed from the context specified when the event was created, and with the following parameters.
If the custom event object hasn't been created, then the event hasn't been published and it has no subscribers. For performance sake, we immediate exit in this case. This means the event won't bubble, so if the intention is that a bubble target be notified, the event must be published on this object first.
The first argument is the event type, and any additional arguments are passed to the listeners as parameters. If the first of these is an object literal, and the event is configured to emit an event facade, that object is mixed into the event facade and the facade is provided in place of the original object.
type
String | Object
The type of the event, or an object that contains a 'type' property.
arguments
Object*
an arbitrary set of parameters to pass to the handler. If the first of these is an object literal and the event is configured to emit an event facade, the event facade will replace that parameter after the properties the object literal contains are copied to the event facade.
getnode
doc
Returns a single Node instance bound to the node or the first element matching the given selector.
node
String | HTMLElement
a node or Selector
doc
Node | HTMLElement
an optional document to scan. Defaults to Y.config.doc.
getDataname
Retrieves arbitrary data stored on each Node instance bound to the NodeList.
name
String
Optional name of the data field to retrieve. If no name is given, all data is returned.
getDataname
Retrieves arbitrary data stored on a Node instance. If no data is associated with the Node, it will attempt to retrieve a value from the corresponding HTML data attribute. (e.g. node.getData('foo') will check node.getAttribute('data-foo')).
name
String
Optional name of the data field to retrieve. If no name is given, all data is returned.
getEventtype
prefixed
Returns the custom event of the provided type has been created, a falsy value otherwise
getLocationReturns the location object from the window/frame in which this YUI instance
operates, or undefined when executing in a non-browser environment
(e.g. Node.js).
It is not recommended to hold references to the window.location object
outside of the scope of a function in which its properties are being accessed or
its methods are being called. This is because of a nasty bug/issue that exists
in both Safari and MobileSafari browsers:
WebKit Bug 34679.
location object from the window/frame in which this YUI
instance operates.
getTargetsReturns an array of bubble targets for this object.
guidpre
Generate an id that is unique among all YUI instances
pre
String
optional guid prefix.
headername
value
Method for setting and deleting IO HTTP headers to be sent with every request.
Hosted as a property on the io function (e.g. Y.io.header).
instanceOfo
type
instanceof check for objects that works around memory leak in IE when the item tested is window/document
iourl
config
Method for initiating an ajax call. The first argument is the url end point for the call. The second argument is an object to configure the transaction and attach event subscriptions. The configuration object supports the following properties:
true to also serialize disabled form field values
(defaults to false)timeout.success or failure.Callback functions for start and end receive the id of the
transaction as a first argument. For complete, success, and
failure, callbacks receive the id and the response object
(usually the XMLHttpRequest instance). If the arguments
property was included in the configuration object passed to
Y.io(), the configured data will be passed to all callbacks as
the last argument.
true to make a same-domain transaction synchronous.
CAVEAT: This will negatively impact the user
experience. Have a very good reason if you intend to use
this.Y.bind().Y.io({ ..., "arguments": stuff })).laterwhen
o
fn
data
periodic
Executes the supplied function in the context of the supplied object 'when' milliseconds later. Executes the function a single time unless periodic is set to true.
when
Int
the number of milliseconds to wait until the fn is executed.
o
Object
the context object.
fn
Function | String
the function to execute or the name of the method in the 'o' object to execute.
data
Object
[Array] data that is provided to the function. This accepts either a single item or an array. If an array is provided, the function is executed with one parameter for each array item. If you need to pass a single array parameter, it needs to be wrapped in an array [myarray].
Note: native methods in IE may not have the call and apply methods. In this case, it will work, but you are limited to four arguments.
periodic
Boolean
if true, executes continuously at supplied interval until canceled.
logmsg
cat
src
silent
If the 'debug' config is true, a 'yui:log' event will be dispatched, which the Console widget and anything else can consume. If the 'useBrowserConsole' config is true, it will write to the browser console if available. YUI-specific log messages will only be present in the -debug versions of the JS files. The build system is supposed to remove log statements from the raw and minified versions of the files.
mergeobjects
Returns a new object containing all of the properties of all the supplied objects. The properties from later objects will overwrite those in earlier objects.
Passing in a single object will create a shallow copy of it. For a deep copy,
use clone().
objects
Object
multiple
One or more objects to merge.
messagemsg
cat
src
silent
Write a system message. This message will be preserved in the minified and raw versions of the YUI files, unlike log statements.
mixreceiver
supplier
[overwrite=false]
[whitelist]
[mode=0]
[merge=false]
Mixes supplier's properties into receiver.
Properties on receiver or receiver's prototype will not be overwritten or
shadowed unless the overwrite parameter is true, and will not be merged
unless the merge parameter is true.
In the default mode (0), only properties the supplier owns are copied (prototype properties are not copied). The following copying modes are available:
0: Default. Object to object.1: Prototype to prototype.2: Prototype to prototype and object to object.3: Prototype to object.4: Object to prototype.receiver
Function | Object
The object or function to receive the mixed properties.
supplier
Function | Object
The object or function supplying the properties to be mixed.
[overwrite=false]
Boolean
optional
If true, properties that already exist
on the receiver will be overwritten with properties from the supplier.
[whitelist]
String[]
optional
An array of property names to copy. If specified, only the whitelisted properties will be copied, and all others will be ignored.
[mode=0]
Number
optional
Mix mode to use. See above for available modes.
[merge=false]
Boolean
optional
If true, objects and arrays that already
exist on the receiver will have the corresponding object/array from the
supplier merged into them, rather than being skipped or overwritten. When
both overwrite and merge are true, merge takes precedence.
namespacenamespace
Adds a namespace object onto the YUI global if called statically.
// creates YUI.your.namespace.here as nested objects
YUI.namespace("your.namespace.here");
If called as a method on a YUI instance, it creates the namespace on the instance.
// creates Y.property.package
Y.namespace("property.package");
Dots in the input string cause namespace to create nested objects for
each token. If any part of the requested namespace already exists, the
current object will be left in place. This allows multiple calls to
namespace to preserve existing namespaced properties.
If the first token in the namespace string is "YAHOO", the token is discarded.
Be careful with namespace tokens. Reserved words may work in some browsers and not others. For instance, the following will fail in some browsers because the supported version of JavaScript reserves the word "long":
Y.namespace("really.long.nested.namespace");
Note: If you pass multiple arguments to create multiple namespaces, only the last one created is returned from this function.
namespace
String
multiple
namespaces to create.
ontype
fn
[context]
[arg*]
Y.on() can do many things:
published and fired from Ypublished with broadcast 1 or 2 and
fired from any object in the YUI instance sandboxFor custom event subscriptions, pass the custom event name as the first argument and callback as the second. The this object in the callback will be Y unless an override is passed as the third argument.
Y.on('io:complete', function () {
Y.MyApp.updateStatus('Transaction complete');
});
To subscribe to DOM events, pass the name of a DOM event as the first argument
and a CSS selector string as the third argument after the callback function.
Alternately, the third argument can be a Node, NodeList, HTMLElement,
array, or simply omitted (the default is the window object).
Y.on('click', function (e) {
e.preventDefault();
// proceed with ajax form submission
var url = this.get('action');
...
}, '#my-form');
The this object in DOM event callbacks will be the Node targeted by the CSS
selector or other identifier.
on() subscribers for DOM events or custom events published with a
defaultFn can prevent the default behavior with e.preventDefault() from the
event object passed as the first parameter to the subscription callback.
To subscribe to the execution of an object method, pass arguments corresponding to the call signature for
Y.Do.before(...).
NOTE: The formal parameter list below is for events, not for function
injection. See Y.Do.before for that signature.
oncetype
fn
[context]
[arg*]
Listen for an event one time. Equivalent to on(), except that
the listener is immediately detached when executed.
See the on() method for additional subscription
options.
onceAftertype
fn
[context]
[arg*]
Listen for an event one time. Equivalent to once(), except, like after(),
the subscription callback executes after all on() subscribers and the event's
defaultFn (if configured) have executed. Like after() if any on() phase
subscriber calls e.preventDefault(), neither the defaultFn nor the after()
subscribers will execute.
The listener is immediately detached when executed.
See the on() method for additional subscription
options.
onenode
Returns a single Node instance bound to the node or the
first element matching the given selector. Returns null if no match found.
Note: For chaining purposes you may want to
use Y.all, which returns a NodeList when no match is found.
node
String | HTMLElement
a node or Selector
parseTypetype
[pre=this._yuievt.config.prefix]
Takes the type parameter passed to 'on' and parses out the various pieces that could be included in the type. If the event type is passed without a prefix, it will be expanded to include the prefix one is supplied or the event target is configured with a default prefix.
publishtype
opts
Creates a new custom event of the specified type. If a custom event by that name already exists, it will not be re-created. In either case the custom event is returned.
type
String
the type, or name of the event
opts
Object
optional config params. Valid properties are:
rbindf
c
args
Returns a function that will execute the supplied function in the supplied object's context, optionally adding any additional supplied parameters to the end of the arguments the function is executed with.
setDataname
val
Stores arbitrary data on a Node instance. This is not stored with the DOM node.
name
String
The name of the field to set. If no name is given, name is treated as the data and overrides any existing data.
val
Any
The value to be assigned to the field.
setDataname
val
Stores arbitrary data on each Node instance bound to the NodeList. This is not stored with the DOM node.
name
String
The name of the field to set. If no name is given, name is treated as the data and overrides any existing data.
val
Any
The value to be assigned to the field.
someo
f
c
proto
Executes the supplied function for each item in a collection. The operation stops if the function returns true. Supports arrays, objects, and NodeLists.
stampo
readOnly
Returns a guid associated with an object. If the object
does not have one, a new one is created unless readOnly
is specified.
subscribesubscribe to an event
throttlefn
ms
Throttles a call to a method based on the time between calls.
fn
Function
The function call to throttle.
ms
Int
The number of milliseconds to throttle the method call. Can set globally with Y.config.throttleTime or by call. Passing a -1 will disable the throttle. Defaults to 150.
unsubscribedetach a listener
unsubscribeAlltype
Removes all listeners from the specified event. If the event type is not specified, all listeners from all hosted custom events will be removed.
type
String
The type, or name of the event
usemodules
[callback]
Attaches one or more modules to the YUI instance. When this is executed, the requirements are analyzed, and one of several things can happen:
All requirements are available on the page -- The modules are attached to the instance. If supplied, the use callback is executed synchronously.
Modules are missing, the Get utility is not available OR the 'bootstrap' config is false -- A warning is issued about the missing modules and all available modules are attached.
Modules are missing, the Loader is not available but the Get utility is and boostrap is not false -- The loader is bootstrapped before doing the following....
Modules are missing and the Loader is available -- The loader expands the dependency tree and fetches missing modules. When the loader is finshed the callback supplied to use is executed asynchronously.
// loads and attaches dd and its dependencies
YUI().use('dd', function(Y) {});
// loads and attaches dd and node as well as all of their dependencies (since 3.4.0)
YUI().use(['dd', 'node'], function(Y) {});
// attaches all modules that are available on the page
YUI().use('*', function(Y) {});
// intrinsic YUI gallery support (since 3.1.0)
YUI().use('gallery-yql', function(Y) {});
// intrinsic YUI 2in3 support (since 3.1.0)
YUI().use('yui2-datatable', function(Y) {});
GlobalHosts YUI page level events. This is where events bubble to when the broadcast config is set to 2. This property is only available if the custom event module is loaded.
GlobalConfigYUI.GlobalConfig is a master configuration that might span multiple contexts in a non-browser environment. It is applied first to all instances in all contexts.
YUI.GlobalConfig = {
filter: 'debug'
};
YUI().use('node', function(Y) {
//debug files used here
});
YUI({
filter: 'min'
}).use('node', function(Y) {
//min files used here
});
metaThe component metadata is stored in Y.Env.meta. Part of the loader module.
YUI_configYUI_config is a page-level config. It is applied to all instances created on the page. This is applied after YUI.GlobalConfig, and before the instance level configuration objects.
//Single global var to include before YUI seed file
YUI_config = {
filter: 'debug'
};
YUI().use('node', function(Y) {
//debug files used here
});
YUI({
filter: 'min'
}).use('node', function(Y) {
//min files used here
});
availableExecutes the callback as soon as the specified element is detected in the DOM. This function expects a selector string for the element(s) to detect. If you already have an element reference, you don't need this event.
type
String
'available'
fn
Function
the callback function to execute.
el
String
an selector for the element(s) to attach
context
Object
optional argument that specifies what 'this' refers to.
args
Object
Multiple
0..n additional arguments to pass on to the callback function. These arguments will be added after the event object.
contentreadyExecutes the callback as soon as the specified element is detected in the DOM with a nextSibling property (indicating that the element's children are available). This function expects a selector string for the element(s) to detect. If you already have an element reference, you don't need this event.
type
String
'contentready'
fn
Function
the callback function to execute.
el
String
an selector for the element(s) to attach.
context
Object
optional argument that specifies what 'this' refers to.
args
Object
Multiple
0..n additional arguments to pass on to the callback function. These arguments will be added after the event object.
domreadyThe domready event fires at the moment the browser's DOM is usable. In most cases, this is before images are fully downloaded, allowing you to provide a more responsive user interface.
In YUI 3, domready subscribers will be notified immediately if that moment has already passed when the subscription is created.
One exception is if the yui.js file is dynamically injected into the page. If this is done, you must tell the YUI instance that you did this in order for DOMReady (and window load events) to fire normally. That configuration option is 'injected' -- set it to true if the yui.js script is not included inline.
This method is part of the 'event-ready' module, which is a submodule of 'event'.
flickSets up a "flick" event, that is fired whenever the user initiates a flick gesture on the node where the listener is attached. The subscriber can specify a minimum distance or velocity for which the event is to be fired. The subscriber can also specify if there is a particular axis which they are interested in - "x" or "y". If no axis is specified, the axis along which there was most distance covered is used.
It is recommended that you use Y.bind to set up context and additional arguments for your event handler,
however if you want to pass the context and arguments as additional signature arguments to "on",
you need to provide a null value for the configuration object, e.g: node.on("flick", fn, null, context, arg1, arg2, arg3)
type
String
"flick"
fn
Function
The method the event invokes. It receives an event facade with an e.flick object containing the flick related properties: e.flick.time, e.flick.distance, e.flick.velocity and e.flick.axis, e.flick.start.
cfg
Object
Optional. An object which specifies any of the following:
gesturemoveSets up a "gesturemove" event, that is fired on touch devices in response to a single finger "touchmove", and on mouse based devices in response to a "mousemove".
By default this event is only fired when the same node has received a "gesturemovestart" event. The subscriber can set standAlone to true, in the configuration properties, if they want to listen for this event without an initial "gesturemovestart".
By default this event sets up it's internal "touchmove" and "mousemove" DOM listeners on the document element. The subscriber can set the root configuration property, to specify which node to attach DOM listeners to, if different from the document.
This event can also be listened for using node.delegate().
It is recommended that you use Y.bind to set up context and additional arguments for your event handler,
however if you want to pass the context and arguments as additional signature arguments to on/delegate,
you need to provide a null value for the configuration object, e.g: node.on("gesturemove", fn, null, context, arg1, arg2, arg3)
type
String
"gesturemove"
fn
Function
The method the event invokes. It receives the event facade of the underlying DOM event (mousemove or touchmove.touches[0]) which contains position co-ordinates.
cfg
Object
Optional. An object which specifies:
gesturemoveendSets up a "gesturemoveend" event, that is fired on touch devices in response to a single finger "touchend", and on mouse based devices in response to a "mouseup".
By default this event is only fired when the same node has received a "gesturemove" or "gesturemovestart" event. The subscriber can set standAlone to true, in the configuration properties, if they want to listen for this event without a preceding "gesturemovestart" or "gesturemove".
By default this event sets up it's internal "touchend" and "mouseup" DOM listeners on the document element. The subscriber can set the root configuration property, to specify which node to attach DOM listeners to, if different from the document.
This event can also be listened for using node.delegate().
It is recommended that you use Y.bind to set up context and additional arguments for your event handler,
however if you want to pass the context and arguments as additional signature arguments to on/delegate,
you need to provide a null value for the configuration object, e.g: node.on("gesturemoveend", fn, null, context, arg1, arg2, arg3)
type
String
"gesturemoveend"
fn
Function
The method the event invokes. It receives the event facade of the underlying DOM event (mouseup or touchend.changedTouches[0]).
cfg
Object
Optional. An object which specifies:
gesturemovestartSets up a "gesturemovestart" event, that is fired on touch devices in response to a single finger "touchstart", and on mouse based devices in response to a "mousedown". The subscriber can specify the minimum time and distance thresholds which should be crossed before the "gesturemovestart" is fired and for the mouse, which button should initiate a "gesturemovestart". This event can also be listened for using node.delegate().
It is recommended that you use Y.bind to set up context and additional arguments for your event handler,
however if you want to pass the context and arguments as additional signature arguments to on/delegate,
you need to provide a null value for the configuration object, e.g: node.on("gesturemovestart", fn, null, context, arg1, arg2, arg3)
type
String
"gesturemovestart"
fn
Function
The method the event invokes. It receives the event facade of the underlying DOM event (mousedown or touchstart.touches[0]) which contains position co-ordinates.
cfg
Object
Optional. An object which specifies:
hashchangeSynthetic window.onhashchange event that normalizes differences
across browsers and provides support for browsers that don't natively support
onhashchange.
This event is provided by the history-hash module.
e
EventFacade
Event facade with the following additional properties:
YUI().use('history-hash', function (Y) {
Y.on('hashchange', function (e) {
// Handle hashchange events on the current window.
}, Y.config.win);
});
keyAdd a key listener. The listener will only be notified if the keystroke detected meets the supplied specification. The specification is a string that is defined as:
[{type}:]{code}[,{code}]*"down", "up", or "press"{keyCode|character|keyName}[+{modifier}]*"shift", "ctrl", "alt", or "meta""enter", "backspace", "esc", "tab", "pageup", or "pagedown"Examples:
Y.on("key", callback, "press:12,65+shift+ctrl", "#my-input");Y.delegate("key", preventSubmit, "enter", "#forms", "input[type=text]");Y.one("doc").on("key", viNav, "j,k,l,;");mousewheelMousewheel event. This listener is automatically attached to the correct target, so one should not be supplied. Mouse wheel direction and velocity is stored in the 'wheelDelta' field.
valuechangeSynthetic event that fires when the value property of an <input> or
<textarea> node changes as a result of a user-initiated keystroke, mouse
operation, or input method editor (IME) input event.
Unlike the onchange event, this event fires when the value actually changes
and not when the element loses focus. This event also reports IME and
multi-stroke input more reliably than oninput or the various key events across
browsers.
For performance reasons, only focused nodes are monitored for changes, so programmatic value changes on nodes that don't have focus won't be detected.
YUI().use('event-valuechange', function (Y) {
Y.one('#my-input').on('valueChange', function (e) {
Y.log('previous value: ' + e.prevVal);
Y.log('new value: ' + e.newVal);
});
});
windowresizeOld firefox fires the window resize event once when the resize action finishes, other browsers fire the event periodically during the resize. This code uses timeout logic to simulate the Firefox behavior in other browsers.