Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

onChange in YUI

How we can write code for onChange function in YUI 2 and YUI3.

jQuery(':input[type=radio]').change(function(){

  var aType=jQuery(this).val();
  var numT= aType==1 ? "3" : "6" ;
  var aWidth=aType==1 ? "330px" : "660px" ;

});
like image 517
Wasim Shaikh Avatar asked Feb 23 '23 07:02

Wasim Shaikh


1 Answers

In YUI 3

Y.all('input[type=radio]').each(function (node) {
    node.on('change', function () {
        var val = this.get('value');
        ...
    });
});

// or
Y.all('input[type=radio]').on('change', function (e) {
    var val = e.currentTarget.get('value');
    ...
});

In YUI 2.9 (which is no longer under active development; use YUI 3)

// typical implementations alias Event or Event.on and
// Selector.query to shorter names
YAHOO.util.Event.on(
    YAHOO.util.Selector.query('input[type=radio]'), 'change', function (e) {
        var val = this.value;
    ...
});
like image 117
Luke Avatar answered Mar 03 '23 03:03

Luke