General JQuery Request For HTML Capture Question
I have a proxy page from which I make a request to a target page to capture html in a specific "DIV". The desired html is returned to the proxy page just fine. The html captured is a list of name links, with a hidden div associated with each link. The hidden "div's" each have a unique identifier associated with them. When one of the links is clicked a javascript function is supposed to execute which will take the name from the link and retrieve some more data which is then supposed to be appended to the unique "div" associated with the name link clicked, and then the "div" in question is to be expanded and displayed(previously(before the link is clicked) it was hidden). So far I heven't been able to successfully append the new data into the selected link's div and see it displayed. Is it possible to do this? I ask because I was wondering, if since the list of links with div's was not original to my proxy page, that maybe they couldn't be seen for some reason by a JQuery selector?
Thanks for the help.