Tab Navigation Help
-
Hi everyone I've been developing a tab navigation lately using XML. Now I'm trying to put all things together. I have 2 nested tabs.I would like to know what is the best way to assembly when I click on a button on the tab the content will appear below. There are mutiple ways out there, I would like to know the most efficient way of your solution Thanks
-
Hi everyone I've been developing a tab navigation lately using XML. Now I'm trying to put all things together. I have 2 nested tabs.I would like to know what is the best way to assembly when I click on a button on the tab the content will appear below. There are mutiple ways out there, I would like to know the most efficient way of your solution Thanks
Use hidden DIVs and with JavaScript set them to show or hide as needed. Use the
display: none;
property rather thanvisibility: hidden;
though as the former will then not take up any space. regards, Paul Watson Bluegrass South Africa Christopher Duncan quoted: "...that would require my explaining Einstein's Fear of Relatives" Crikey! ain't life grand? Einstein says... -
Hi everyone I've been developing a tab navigation lately using XML. Now I'm trying to put all things together. I have 2 nested tabs.I would like to know what is the best way to assembly when I click on a button on the tab the content will appear below. There are mutiple ways out there, I would like to know the most efficient way of your solution Thanks
I have done the same with TABLES and content for every TAB was included in a TR of the TABLE. Then set the DISPLAY style of each TR to either BLOCK or NONE. If I was to do somehting like this again I would use DIVs instead as the other fellow CPian suggested... theJazzyBrain
Excelence is not an act, but a habbit
Aristotle
-
Hi everyone I've been developing a tab navigation lately using XML. Now I'm trying to put all things together. I have 2 nested tabs.I would like to know what is the best way to assembly when I click on a button on the tab the content will appear below. There are mutiple ways out there, I would like to know the most efficient way of your solution Thanks