On my page, users can click "Show pics", which loads pictures via ajax.
Then, under each picture, you can click "Load associated data" which does another ajax load, attempting to load the new data under the picture.
However, it doesn't work. The second remote request can't find the picture div that was dynamically loaded. It works fine when the picture is not dynamically loaded. Any hints on accessing dynamically loaded content with subsequent ajax requests?
This is equivalent to the problem of first loading dynamic data, and then accessing it in subsequent javascript calls (outside of the success callback method from the initial call), which I have not found a solution to.