diff -r 322d0feea350 -r 89ef5ed3c48b src/cm/media/js/lib/yui/yui_3.10.3/api/modules/event-valuechange.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/cm/media/js/lib/yui/yui_3.10.3/api/modules/event-valuechange.html Tue Jul 16 14:29:46 2013 +0200 @@ -0,0 +1,1603 @@ + + + + + event-valuechange - YUI 3 + + + + + + + + +
+
+
+ +

+ +
+
+ API Docs for: 3.10.3 +
+
+
+ +
+ +
+
+
+ Show: + + + + + + + +
+ + +
+
+
+

event-valuechange Module

+
+ + + + + + + + + +
+ + + +
+

Adds a synthetic valuechange event that fires when the value property of an +<input> or <textarea> node changes as a result of a keystroke, mouse +operation, or input method editor (IME) input event.

+ +

Usage:

+ +
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);
+    });
+});
+
+
+ + + +
+
+ +

This module provides the following classes:

+ + + +
+ +
+ +
+
+ +
+
+
+
+
+
+ + + + + + + + + +