I\'m trying to unmount a React.js node with this._rootNodeID
this._rootNodeID
handleClick: function() { React.unmountComponentAtNode(this.
The example I use:
unmount: function() { var node = this.getDOMNode(); React.unmountComponentAtNode(node); $(node).remove(); }, handleClick: function() { this.unmount(); }