so is something like this possible?
Y.one("input.units").on("keyup change", function(e){
...
});
the jquery equivalent is
$("input.units").bind("keyup change", function(e){
...
});
|
so is something like this possible?
the jquery equivalent is
| ||||
|
feedback
|
|
Yes, this is possible. Just pass an array of event names instead of a string:
| |||||
feedback
|
|
Why not try something like this:
| |||||||
feedback
|
|
EDIT: YUI supports this natively. See Ryan's answer below. No. You could do something like this, though:
This code wraps Node.on() to accept a string of space-delimited event types. It returns an object with a single method, detach, which detaches your handler from all of the events. Note that this code only affects the Y instance inside its sandbox, so you should put it inside the function that you pass to | |||||
feedback
|