How I can add content below the dhtml tabs menu, like you have on your site?
Return to Recent Questions
Q:
I am evaluating your Deluxe Tuner / Tab program and was
wondering how to add content below the tabs, like you have on your
site.
You have the tabs, then a content area below each tab. How is this done with your product.
A:
You should use ID attribute of object to show in the second parameter
of bmenuItems. You set it in the "Item Parameters" window ("Link"
parameter).
You should also set:
var tabMode = 0;
So, you'll have, for example, the following bmenuItems:
["tab text","div1", ...],
["tab text","div2", ...], Here "div1" and "div2" is IDs of objects within your html page, for example:
<div id="div1">text 1</div>
<div id="div2">text 2</div>
You can also see examples, which you can find in the trial package.
Return to Recent Questions
|