I\'m trying to unmount a React.js node with this._rootNodeID
this._rootNodeID
handleClick: function() { React.unmountComponentAtNode(this.
This worked for me. You may want to take extra precautions if findDOMNode returns null.
findDOMNode
ReactDOM.unmountComponentAtNode(ReactDOM.findDOMNode(this).parentNode);