John Lindal![]()
Provides most of the same higher-order functions that array-extras adds to Y.Array.
To add these functions to the YUI Global Object, use gallery-funcprog.
Example usage.
<script src="http://yui.yahooapis.com/3.5.1/build/yui/yui-min.js"></script>YUI({
//Last Gallery Build of this module
gallery: 'gallery-2012.05.23-19-56'
}).use('gallery-nodelist-extras2', function(Y)
{
var list = Y.all('#test div');
var ids = list.map(function(node)
{
return node.get('id');
});
var classes = list.reduce('', function(result, node)
{
return result + node.get('className') + ' ';
});
});
© 2006-2013 Yahoo! Inc. All rights reserved.
All code on this site is licensed under the BSD License unless stated otherwise.
About This Site · Security Contact Info