tags:

views:

132

answers:

1

how do i tween/morph the height of many elements at once selected by css class selector using mootools?

thanks :)

+1  A: 

Basics of MooTools:

$$('div').each(function(el, index){
    el.morph({
        height: 100 * index
    });
});​

Example: http://jsfiddle.net/mbrNq/

Oskar Krawczyk
thanks oscar..!
significance
Yet it's "Oskar".
Oskar Krawczyk