javascriptライブラリを作成していて、あれ動かない?と思うとこれが原因の事が未だにあるため、忘れないようにメモしておく。 IE6,7では、getAttribute と setAttribute を使用して、class 属性や style 属性などを操作できないバグ(IEの仕様)がある。 以下、一部の例を記載する。 element.setAttribute("class","○○○"); → element.setAttribute("className","○○○"); element.setAttribute("style", "○○○"); → element.style.cssText = "○○○"; element.setAttribute("maxlength", 5); → element.setAttribute("maxLength", 5); element.s