Abe Miessler
Abe Miessler

Reputation: 85046

Easiest javascript library for making custom tabs?

I am interested in making a tabbed display on a web page I am working on. I need to apply my own styles, so I would like to find a javascript library that provides very little styling out of the box and makes customization as easy as possible.

Features I would like:

I looked at jQuery UI Tabs but it does not seem like it would be too easy to apply my own styles if I don't use their tools to do it.

I also looked at jQuery Tools, which seemed a little easier to customize, but appears to require that you use fixed length images for the tabs.

Can anyone recommend a good js library for creating customized tabbed navigation? Am I just making customization of the two libraries mentioned above harder than it needs to be?

Upvotes: 6

Views: 1439

Answers (2)

Rion Williams
Rion Williams

Reputation: 76547

This is a super easy walk-through to create custom tabs using jQuery, I followed it once and haven't used any other tabs since:

Custom jQuery Tabs | Soh Tanaka

I know it can be tempting to often use libraries for something like this, but it is very straightforward and you'll know all about how they work, which will allow you customize them far easier than nearly other plug-ins.

Upvotes: 3

Naftali
Naftali

Reputation: 146302

With jQuery-UI you can easily change the styles with css, you do not need any fancy tools ^_^

Upvotes: 2

Related Questions