views:

51

answers:

2

I want to implement with jQuery a tabbed interface for my website (like the firefox ones). They should also be able to be moved like the ones FireFox has.

If anyone knows of an already written library, please give me a link.

+2  A: 

If you're already using jQuery, the jQuery UI Tabs has a sortable option for this.

Checkout the other demos for all the widgets there as well...in most cases it's not worth it to include the jQuery UI library for any 1 widget or effect...but if you can make use of a few of them, it's a nice library to work with. Of course there are alternatives out there, just throwing this as the simple/configurable option.

As a side note, it is jQuery UI....style it like you want.

Nick Craver
It will not help me because tab should also be able to be moved like firefox and tab should generate dynamically by javascript.
Jimit
Beat me to it! I was just about to link this, goodjob.
Kyle Sevenoaks
@Jimit - The demo I linked is sortable/moveable like firefox...just drag the tabs, same as firefox :) You can also generate anything you want via javascript, for example to add a tab, call the [add method](http://jqueryui.com/demos/tabs/#method-add).
Nick Craver
@Nick - Right nick but I also want that tabs move like firefox tab.
Jimit
@Jimit, these tabs are moveable, click and drag the top tabs in that demo.
Kyle Sevenoaks
A: 

ExtJS is more suitable for such interfaces. In the process of trying it out you will find many more amazing possibilities that it opens up. Also, it is very well written and a pleasure to work with.

HeavyWave
That is good example of extjs but I want it with jquery.
Jimit