That's also how you would do that. Say you have a 'top' page with Dynamic Ajax Content script on it, and you use it to import a page called test.htm:
Code:
<a href="javascript:ajaxpage('test.htm', 'rightcolumn');">Test</a>
On test.htm we could have (only):
HTML Code:
<div>
Hi! I'm a Test!<br>
<a href="javascript:ajaxpage('test2.htm', 'rightcolumn');">See Another</a>
</div>
As long as you have one and only one division with the id 'rightcolumn' (this should be on the 'top' page), and test.htm, test2.htm, and your 'top' page are all in the same folder, this will work.
Bookmarks