DOM Refresh?

DOM Refresh?

I'm trying JQuery for it's ajax options, but I'm having the same old problem I'd always have.

I have a list of files uploaded links, with upload, view and delete options to manage these uploads. All using JQuery.ajax. If I perform an operation (upload or delete), the div is updated with a fresh list of links from the database using ajax - all taged with the appropriate class and ID names to function with my JQuery script. Once refreshed though, the delete links no longer work, as if the page does not know about the refreshed div.

Without using a framework, this is always a problem because the DOM doesn't know about the new tags. How can I get JQuery to know that the div has been updated? Everything works well, it's just after the div refresh nothing works in that div anymore.

Thanks!