Isn't htmlfor is only recognized by IE8 if it's in Compatibility Mode. In Standards Mode, it ignores the htmlfor attribute. In both modes, for works properly. Shouldn't htmlFor be for, or what am I missing?
https://facebook.github.io/react/docs/dom-elements.html#htmlfor
Since
foris a reserved word in JavaScript, React elements usehtmlForinstead.
If you use htmlFor on your React element, for will end up in the DOM.
Thanks! Sorry for the superfluous issue.
Most helpful comment
https://facebook.github.io/react/docs/dom-elements.html#htmlfor
If you use
htmlForon your React element,forwill end up in the DOM.