How can I 'talk' with dom elements with react?
For example - I need to bind some actions with some js lib
Both approaches returns undefined
for some reason
componentDidMount() {
const element1 = document.querySelector('.home-container')
const element2 = ReactDOM.findDOMNode(this);
// returns undefined, undefined
console.log(element1.length, element2.length);
}
render() {
return (
<div className="home-container">
...
</div>
)
}
But console.log(element1)
returns html from render itself though
How can I work with them? And what correct lifecycle method for this?
You use "refs":
Once your component has rendered, with the above, its
div
property (you can use any name you want) will refer to thediv
element that was rendered.Here's an example largely copied from the link above that focuses a text input when it's rendered: