how do i tween/morph the height of many elements at once selected by css class selector using mootools?
thanks :)
how do i tween/morph the height of many elements at once selected by css class selector using mootools?
thanks :)
Basics of MooTools:
$$('div').each(function(el, index){
el.morph({
height: 100 * index
});
});
Example: http://jsfiddle.net/mbrNq/