I've just started learning ReactJS and there's this thing that occurred to me.
For example:
The function that I would like to execute against a reactjs element:
function initializeInput(selector, color) {
// just an example function
$(selector).css("font-size", "21pt");
}
And a part of my .jsx file:
var myInput = React.createClass({
componentDidMount: function () {
initializeInput("#" + this.props.inputId);
},
render: function() {
return (
<input type="text" value="text goes here"
name={this.props.inputName}
id={this.props.inputId}/>
);
}
});
This function is called successfully, however nothing happens and it seems that things don't just work out that way with jQuery and React. Is it even good to mix them up like that? Thanks.