On submission of a form, I\'m trying to doSomething() instead of the default post behaviour.
doSomething()
Apparently in React, onSubmit is a supported event for for
You can pass the event as argument to the function and then prevent the default behaviour.
var OnSubmitTest = React.createClass({ render: function() { doSomething = function(event){ event.preventDefault(); alert('it works!'); } return Click me ; } });