How to replace iframe embeded urls with ajax?

How to replace iframe embeded urls with ajax?

I'm considering replacing my iframe embeds with ajax calls, however before doing this i would need to know how to prevent links from being followed by the master page.

In essence i would like the behavior of an iframe without the hassle of an iframe.

Back-story: I've integrated moodle and joomla. Joomla is the master page and currently runs moodle within it using an iframe but i am told ajax can do this better.

So far i have this:
  1. $('#contents').load('url);

It works but the links are followed by the master page (as i would expect), what i want if for the links to be followed within the ajax call. So that the content of #contents are updated via ajax.

Is this possible?