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.
Jquery works very well with Reactjs . You can call jquery function after react render ie in componentDidMount and
You can react refs for that. Lets say you want a tooltip
var myInput = React.createClass({
componentDidMount: function () {
$(this.refs.tooltip).tooltip();
},
render: function() {
return (
<input ref="tooltip" type="text" value="text goes here"
name={this.props.inputName}
id={this.props.inputId}/>
);
}
});
First you need to render component elements (render
function) then call your jquery code in componentDidMount
handler
http://jsbin.com/zupagav/1/edit?js,console,output
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With