Recent Questions
Q: Is it possible for dhtml vertical tabs to have a link on page that links to
second page by passes the default setting then selects and displays
the information in the tab you need?
A: You can use the following function to open specific tab:
dtabs_itemClick(menuInd,itemInd);
where
menuInd - index of a tab menu on a page, >= 0.
itemInd - index of a item, >=0.
For example:
<DIV onClick="dtabs_itemClick(0,2)" style="width: 200px; border: 2px solid #000;">
Click to open the third tab
</DIV>
Q: How do I change the background color for the floating drop down menu
A: To change menu colors you should change the following parameters:
var menuBackColor="#F2F3F2";
var itemBackColor=["#F2F3F2","#535353"];
You can also use Individual Item Styles to change the color of the specific items:
var menuStyles = [
["menuBackColor=#F2F3F2"],
];
var itemStyles = [
["itemBackColor=#F2F3F2,#535353"],
];
Q: I'm facing a problem with "movable menue":
I'd like to use template "data-image-based-1.js" - everytime I try to change it into a movable one, the javascript menu system just blockes and that's it. where do I have to change a setting in order to be able to use this fantastic menue as a movable one?
A: You should set absolute position for the menu when you use movable orfloatable feature:
var absolutePos=1;
var posX="100px";
var posY="100px";
Q: Is it possible to open a specific tab using javascript in the horizontal tabbed?
A: You can try to use the following function:
dtabs_itemClick(menuN, itemN);
where
menuN - index of a menu on a page, >= 0.
itemN - index of a tab you want to show, >=0.