How do i provide new line between two tab using tabber class
Hii all, am new to javascript and i don't know much about tabber class ,i would like to have a page where tabs are in two differnet line attached system property page where tabs are in two different line .
<div class="tabber">
<div class="tabbertab">
<开发者_StackOverflow社区h2>tab1</h2>
form stuff goes here...
</div>
<div class="tabbertab">
<h2>tab2</h2>
form stuff goes here
</div>
<div class="tabbertab ${tab_default}">
<h2>tab3</h2>
form stuff goes here
submit button here...
</div>
suppose these are two tabs which i would like to come into two different line...
You'll need to use code that support such feature, from quick look jQuery has several plugins: http://plugins.jquery.com/plugin-tags/tabcontrol
For example this one have the "vertical" tabs you're after.
You just need to insert this as separator:
<li style="display: block;"></li>
And create an empty div for corresponding tab "content".
精彩评论