Originally Posted by
s-p-n
Not exactly, AJAX is Asynchronous JavaScript And XML. You can use it to request xHTML (or HTML, or even a text document.. The name isn't very good because it's not even limited to XML, just content that can go inside an xHTML document.) It requests data from some server (not necessarily the one hosting the AJAX script). That's the only "server-side" logic AJAX requires. You don't even really need an HTTP server.. so yeh.. just a third party file that can be requested under the hypertext protocol.
OP wants to request the content from main web-pages on the site through an iFrame. Someone mentioned they got it working with AJAX. For SEO reasons, the content isn't going to be spidered in a desired way. (See my most previous post)
If the content for "about us" was inside the host page (nested in a hidden element or in the JavaScript), and no request was made to another file via JavaScript, then it's not ajax. The moment you make a request to a file through JavaScript, you're using AJAX. It's really not as complicated as it's made out to be..