1
<script type="text/javascript">
5
renderAt: '#containerDemo',
13
desc: 'With few lines of code you could make tabs. You can try more options on the fly!',
14
html: { url: 'templates/ui.tabs.ex1.html' },
15
destroy: '$("tabsEx1 > ul").tabs("destroy");',
18
desc: 'First tab active by default',
19
source: '$("#tabsEx1 > ul").tabs();'
22
desc: 'Start With Custom Tab',
23
source: '$("#tabsEx1 > ul").tabs({selected:1});'
26
desc: 'Use a slide effect to switch tabs',
27
source: '$("#tabsEx1 > ul").tabs({ fx: { height: "toggle" } });'
30
desc: 'Use a fade effect to switch tabs',
31
source: '$("#tabsEx1 > ul").tabs({ fx: { opacity: "toggle" } });'
34
desc: 'Use a combined slide and fade effect to switch tabs',
35
source: '$("#tabsEx1 > ul").tabs({ fx: { height: "toggle", opacity: "toggle" } });'
38
desc: 'Define event to switch tabs (mouseover)',
39
source: '$("#tabsEx1 > ul").tabs({ event: "mouseover" });'
b'\\ No newline at end of file'