I have this code that loads external content using AJAX. The issue is that the loaded content may contain links which will also be used to load other content, hence the need for .live().


$('a.ajax').live('click', loadContent);

My site is highly AJAX-driven so it's necessary that clicking the back button displays the correct AJAXed page.

I have looked all over the site but couldn't find any documentation for this.