Referencing Div's Loaded From One External Page To Load Them With More Data From A Second External Page

Referencing Div's Loaded From One External Page To Load Them With More Data From A Second External Page

I have a table on a page into which I'm loading a list of TR's with links and with div's from a table on another page. The links all have names and unique identifiers associated with them and within each of them is a div which also has a unique identifier (the id attribute) associated with it. Now this list loads and displays fine on my original page. When I click a link on the list another JQuery request to another page is issued passing the name to the target page as parameters. It's supposed to then "load" the html generated from this request to the target page back into the original unique div on my original page associated with the name link clicked.    
 
My question is, is this possible to do, since the "DIV" I'm trying to load this target page data into is not original to the page but was itself originally loaded from another target page? If so then my selector must be wrong. Please advise and thanks for the help.