Wondering what DOM Elem property blindDown blindUp manipulates? I want
to attach a new DOM Elem, have it hidden, and then call blindDown to
make it appear. I tried things like:

Elem.style.height = "0"; and then calling blindDown - but it doesnt
appear to be height that blindDown manipulates.

This works but is really hackish:

Elem.style.visibility = 'hidden';
MochiKit.Visual.blindUp( Elem, {duration:0, afterFinish: function(){
        Elem.style.visibility = 'visible';
        MochiKit.Visual.blindDown( Elem );
}});

Thanks


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"MochiKit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/mochikit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to