The reason that Ajax Tabs has a default content is that it is hard coded into the target division. In fact, the demo page for Ajax Content already has default content (from the demo's source):
Code:
<div id="rightcolumn"><h3>Choose a page to load.</h3></div>
The red part is the default content. Here in Step 2 from the demo page, I've added different 'default' content (red):
Normal link:
Code:
<a href="javascript:ajaxpage('test.htm', 'contentarea');">test</a>
<div id="contentarea">Here's some different 'default' content<br>You can have images:<br>
<img src="some.jpg"><br>
Or, whatever HTML content you like here.</div>
Bookmarks