|
|
The content of the textarea tabs is not displaying in IE.
Return to Recent Questions
Q:
Well I figured all of that out but now I have a new problem.
The content of the textarea tabs is not displaying in IE.
A:
See, it is not correctly to use submenus in tabMode=0.
Now you have:
var bmenuItems = [
["Why Choose Frictionsweb?","content1", "", "", "", "Why choose Frictionsweb Premium Internet Services?", "", "", "", ],
["|Our Services","content2", "", "", "", "We handle your project from the ground up!", "", "", "", ],
];
var bmenuItems = [
["Specials","content3", "", "", "", "Great Deals from Frictionsweb!", "", "", "", ],
["|Our Services","content4", "", "", "", "We handle your project from the ground up!", "", "", "", ],
["-","", "", "", "", "", "", "", "", ],
];
Try to write your bmenuItems in the following way:
var bmenuItems = [
["Why Choose Frictionsweb?","content1", "", "", "", "Why choose Frictionsweb Premium Internet Services?", "", "", "", ],
["Our Services","content2", "", "", "", "We handle your project from the ground up!", "", "", "", ],
];
var bmenuItems = [
["Specials","content3", "", "", "", "Great Deals from Frictionsweb!", "", "", "", ],
["Our Services","content4", "", "", "", "We handle your project from the ground up!", "", "", "", ],
["-","", "", "", "", "", "", "", "", ],
];
Return to Recent Questions
Related:
- Sep 25, 2006 - My menu icons are not appearing in the preview, or when I launch deluxe-menu.html
- Nov 07, 2006 - The menu appears perfectly in the css menu maker preview screen, but not on the page.
- Jan 31, 2007 - I tried to create the html version of the rollover menus. It is still not working.
- Feb 07, 2007 - Can you create/destroy tabs javascript with only client side javascript
- Feb 24, 2007 - I built the dhtml pulldown menu and tried it in my site and I see nothing but text
- March 08, 2007 - Which file(s) I must change to change the content of each tab in the tabs dhtml?
- May 24, 2007 - How I can add content below the dhtml tabs menu, like you have on your site?
- June 07, 2007 - I cannot add icon before each item in the sub-menu in javascript tabs.
- July 07, 2007 - My question is that not all my javascript html tabs point to the same target
- Aug 19, 2007 - The submenu goes away and the main html tab javascript is not highlighted
- Aug 21, 2007 - How do I get the content to refresh when I click on a tabs javascript?
|