If you simply mean how to create links inside OmniSlide that load the URL in question inside a DIV on your page (per Dynamic Ajax content), inside menuItems.js, you should be able to do something like:
Code:
["Dynamic Drive", "javascript:ajaxpage('test.htm', 'contentarea')", ""],
["What's New", "http://www.dynamicdrive.com/new.htm",""],
All I'm doing here is moving the original URL syntax for calling a page in Dynamic Ajax Content and moving it to the script. The original syntax looks like:
Code:
<a href="javascript:ajaxpage('test.htm', 'contentarea');">test</a>
where "test.htm" in the URL of the page to load on your server (offsite links won't work), and "contentarea" is the ID of the DIV to load it in.
Bookmarks