onTransitionEnd

fires when the input folding/unfolding animation ends

void onTransitionEnd();

Example

$$("comments").attachEvent("onTransitionEnd",function(){
    // your code here
});

Back to top