Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~248 People Reached
Favorite Forums
Favorite Tags
Member Avatar for mkas

I have a sample page with three tabs (tabs.html). Tabs are displayed as follows: [CODE]<ul class="tabs"> <li><a href="javascript:tabSwitch('tab_1', 'content_1');" id="tab_1" class="active">Tab 1</a></li> <li><a href="javascript:tabSwitch('tab_2', 'content_2');" id="tab_2">Tab 2</a></li> <li><a href="javascript:tabSwitch('tab_3', 'content_3');" id="tab_3">Tab 3</a></li> </ul>[/CODE] The JavaScript used to switch tabs is: [CODE]function tabSwitch(active, number, tab_prefix, content_prefix) { for (var i = …

Member Avatar for stbuchok
0
248