I'm having a litte problem while creating a dropdown menu with bootstrap, in document https://facebook.github.io/react/docs/tags-and-attributes.html has said React supports all data-* and aria-* attributes as well as every attribute in the following lists, all attributes are camel-cased...
EX:
React.DOM.div(
{
className: 'dropdown', // available
dataToggle: 'dropdown', // not available
ariaExpanded: true // not available
}
)
when run, attribute data-* and aria-* same not available?? i don't know why so???What could I do?
Thanks in advance.