Searched defs:simulate (Results 1 - 2 of 2) sorted by relevance

/yui3/src/node/js/
H A Dnode-event-simulate.js2 * Adds functionality to simulate events.
4 * @submodule node-event-simulate
9 * @param {String} type The type of event to simulate (i.e., "click").
13 * @method simulate
15 Y.Node.prototype.simulate = function(type, options) {
16 Y.Event.simulate(Y.Node.getDOMNode(this), type, options);
/yui3/src/event-simulate/js/
H A Devent-simulate.js5 * @module event-simulate
572 * @param {String} type The type of event to simulate (i.e., "click").
576 * @method simulate
579 Y.Event.simulate = function(target, type, options){
598 Y.error("simulate(): Event '" + type + "' can't be simulated.");

Completed in 841 milliseconds