I have some queries in this code. This is the menu bar JavaScript in this it has many tab. When I run this code it automatically click in Second TAB instead of First TAB.
JAVASCRIPT CODE.
JavaScript
x
33
33
1
var dolphintabs={subcontainers:[], last_accessed_tab:null,
2
3
revealsubmenu:function(curtabref){
4
this.hideallsubs()
5
if (this.last_accessed_tab!=null)
6
this.last_accessed_tab.className=""
7
if (curtabref.getAttribute("rel")) //If there's a sub menu defined for this tab item, show it
8
document.getElementById(curtabref.getAttribute("rel")).style.display="block"
9
curtabref.className="current"
10
this.last_accessed_tab=curtabref
11
},
12
13
hideallsubs:function(){
14
for (var i=0; i<this.subcontainers.length; i++)
15
document.getElementById(this.subcontainers[i]).style.display="none"
16
},
17
18
init:function(menuId, selectedIndex){
19
var tabItems=document.getElementById(menuId).getElementsByTagName("a")
20
for (var i=0; i<tabItems.length; i++){
21
if (tabItems[i].getAttribute("rel"))
22
this.subcontainers[this.subcontainers.length]=tabItems[i].getAttribute("rel") //store id of submenu div of tab menu item
23
if (i==selectedIndex){ //if this tab item should be selected by default
24
tabItems[i].className="current"
25
this.revealsubmenu(tabItems[i])
26
}
27
tabItems[i].onclick=function(){
28
dolphintabs.revealsubmenu(this)
29
}
30
} //END FOR LOOP
31
}
32
}
33
HTML Code :
JavaScript
1
44
44
1
<head>
2
<title>Cut & Paste Dolphin Tabs Menu</title>
3
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
4
<link rel="stylesheet" href="style.css" type="text/css" />
5
<script type="text/javascript" src="dolphin.js">
6
</script>
7
</head>
8
9
<body>
10
11
<div id="dolphincontainer">
12
<div id="dolphinnav">
13
<ul>
14
<li><a href="http://www.javascriptkit.com"><span>Home</span></a></li>
15
<li><a href="http://www.javascriptkit.com" rel="joey"><span>Joey</span></a></li>
16
<li><a href="http://www.javascriptkit.com" rel="suzy"><span>Suzy</span></a></li>
17
<li><a href="http://www.javascriptkit.com" rel="george"><span >George</span></a></li>
18
<li><a href="http://www.javascriptkit.com"><span>Contact Us</span></a></li>
19
</ul>
20
</div>
21
<div id="dolphin_inner">
22
<div id="joey" class="innercontent">
23
Joey's statue of a white dog was originally given to Jennifer Aniston as a good luck present from her best friend.
24
</div>
25
26
<div id="suzy" class="innercontent">
27
During this period, then-locally famous Suzy Waud anchored evening broadcasting.
28
</div>
29
30
<div id="george" class="innercontent">
31
George Louis Costanza is a fictional character on the United States based television sitcom Seinfeld (1989â••1998).
32
</div>
33
34
<!-- End Sub Menus container -->
35
</div>
36
37
</div>
38
39
<script type="text/javascript">
40
41
</script>
42
</body>
43
</html>
44
CSS Code :
JavaScript
1
19
19
1
#dolphincontainer{position:relative;border-bottom: 2px solid navy; color:#E0E0E0;background:#143D55;
2
width:100%;font-family:Helvetica,Arial,Verdana,sans-serif;}
3
#dolphinnav{position:relative;height:33px;font-size:12px;text-transform:uppercase;font- weight:bold;background:#fff url(images/dolphin_bg.gif) repeat-x bottom left;padding:0 0 0 20px;}
4
#dolphinnav ul{margin:0;padding:0;list-style-type:none;width:auto;float:left;}
5
#dolphinnav ul li{display:block;float:left;margin:0 1px;}
6
#dolphinnav ul li a{display:block;float:left;color:#EAF3F8;text- decoration:none;padding:0 0 0 20px;height:33px;}
7
#dolphinnav ul li a span{padding:12px 20px 0 0;height:21px;float:left;}
8
#dolphinnav ul li a:hover{color:#fff;background:transparent url(images/dolphin_bg-OVER.gif) repeat-x bottom left;}
9
#dolphinnav ul li a:hover span{display:block;width:auto;cursor:pointer;}
10
#dolphinnav ul li a.current,#dolphinnav ul li a.current:hover{color:#fff;background:#1D6893 url(images/dolphin_left-ON.gif) no-repeat top left;line-height:275%;}
11
#dolphinnav ul li a.current span{display:block;padding:0 20px 0 0;width:auto;background:#1D6893 url(images/dolphin_right-ON.gif) no-repeat top right;height:33px;}
12
13
#dolphin_inner{color: white; padding: 5px; font-size: 80%; height: 1em}
14
15
#dolphin_inner a:link, #dolphin_inner a:visited, #dolphin_inner a:active{color: white}
16
#dolphin_inner a:hover{color: yellow}
17
18
.innercontent{display: none;}
19
For Sample Please See the below Link. Click Here to View the Sample of it http://www.javascriptkit.com/script/script2/tabset/index.shtml
Advertisement
Answer
Add rel
attribute to your <a>
tag
Home
Hope this helps!
UPDATED
In your HTML code update the below call
JavaScript
1
2
1
dolphintabs.init("dolphinnav", 0)
2