次の効果の一部またはすべてが適用された DOM 要素があります。
#elem {
-webkit-transition: height 0.4s ease;
-moz-transition: height 0.4s ease;
-o-transition: height 0.4s ease;
transition: height 0.4s ease;
}
この要素のサイズを変更する jQuery プラグインを作成しています。スムーズにサイズ変更できるように、これらの効果を一時的に無効にする必要があります。
これらの効果が親から適用されるか、まったく適用されない可能性がある場合、これらの効果を一時的に無効にする (そして再度有効にする) 最もエレガントな方法は何ですか。