tags:

views:

58

answers:

2

Does anyone have any resources about creating your own tab control without using jQuery UI?

+1  A: 

Look for a plugin.

Tabs - jQuery plugin for accessible, unobtrusive tabs
http://stilbuero.de/jquery/tabs/

You can google for "jQuery Tabs Plugin" if you don't like that one.

Robert Harvey
+1  A: 

To the point, tabs are nothing more than a few buttons (links?) which toggles the visibility (show/hide) of some panels (div's?). Knowing that, it should be straightforward enough to write your own tabbed panel. You can make use of specific names/patterns in the class or ID of the buttons and panels to relate them with each other and hide the other panels.

BalusC