I\'m trying to unmount a React.js node with this._rootNodeID
this._rootNodeID
handleClick: function() { React.unmountComponentAtNode(this.
As mentioned in the GitHub issue you filed, if you want access to a component's DOM node, you can use this.getDOMNode(). However a component can not unmount itself. See Michael's answer for the correct way to do it.
this.getDOMNode()