I have some content that I dynamically inject onto the DOM using dangerously set inner HTML. When I reference it using a Ref, and query it, the NodeList is always empty, but when I look at the just sidebarContent.current
, the NodeList is not empty.
Why does this happen?
import React, { useEffect, useState } from 'react';
const PostSideBar = ({ sidebarContent }) => {
const [childNodes, setChildNodes] = useState([]);
useEffect(() => {
if (sidebarContent.current) {
const h2Elements = sidebarContent.current.querySelectorAll('h2');
setChildNodes(h2Elements);
console.log(h2Elements); // Check the h2 elements
}
}, [sidebarContent]);
return <div>PostSideBar</div>;
};
export default PostSideBar;