JQuery Grab Element That's Loaded Dynamically
I have a div that's loaded dynamically <div id="box"></div> I'm trying to grab the div using jQuery and add text to it $("#box").text("Hello World"); But I'm unable to do so. A delegation issue I assume. Any solutions?