Questions tagged [jquery-ui-tabs]

The Tab widget that forms part of the jQuery.UI library

A tab widget which is a part of the library.

API Documentation

1369 questions
8
votes
2 answers

uncaught exception: jQuery UI Tabs: Mismatching fragment identifier

all. I have built a simple jQuery/PHP chat program that works rather well. However, I'd like to add a feature like channels or rooms. Ideally, I'd like to use tabs at the top of the chat to manage which room the user is in (there are only going to…
chaoskreator
  • 889
  • 1
  • 17
  • 39
8
votes
7 answers

Can I remove the entire style of jQuery UI tabs without breaking the styles of other UI components?

I want to fully customize jQuery UI tabs without breaking the styles of jQuery UI date picker? Is that doable or should I do a custom work and not use jQuery UI tabs?
Idrees
  • 711
  • 1
  • 7
  • 31
8
votes
3 answers

"JScript - script block" and memory leaks - How to freeing up resources properly?

I put some jquery tabs inside a partial view of my project. I noticed by Visual Studio's "Solution Explorer", that during debug a new dynamic JScript - script block is generated every time I click on a new tab. This happens even if I put $('#mytabs…
Larry
  • 573
  • 5
  • 14
  • 31
8
votes
4 answers

jquery UI Tab not scrolling with container

Setup : I have a containing div which is meant to be scrollable. This is a container for my jquery ui tab div. Problem: When I scroll the container in IE8 it scrolls other content in it but the jquery UI tab is fixed as though position=fixed. Works…
Alan Alcock
  • 787
  • 1
  • 11
  • 26
8
votes
5 answers

Selected tab id?

I have the following script which gets the index of the selected tab: http://jsfiddle.net/oshirowanen/eWncA/ Is it possible to get the id instead, if the li's had id's. If it is easier to get it from elsewhere, then that would also be fine, i.e.…
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
8
votes
3 answers

Why does 10px + 10px = 10px?

I have the following script where the margin for the . portlet class is behaving strangely: http://jsfiddle.net/mYx5y/19/ it should be adding 10px around each portlet, which should mean a gap of 20px between portlets. For some reason, I am only…
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
8
votes
4 answers

With jQuery UI tabs, how can I run code after a click on a tab?

With jQuery UI tabs, you can use the select method to run code when a tab is clicked: $( ".selector" ).tabs({ select: function(event, ui) { ... } }); But the code is run before the just clicked tab has been loaded. I need to run code after new…
ben
  • 29,229
  • 42
  • 124
  • 179
8
votes
6 answers

how do i check which tabs is active using jquery tabs?

how do i check which tabs is active using jquery tabs?
Bart
  • 4,830
  • 16
  • 48
  • 68
8
votes
1 answer

get the tab text on select jquery ui tabs

I m using jquery ui tabs I can get the index of the selected tab on "load" (ajax) event $('#tabs').tabs( { load: function(e, ui) { if($('#tabs').tabs('option','selected') == 0) { } } }); Now i want to get the…
Pradyut Bhattacharya
  • 5,440
  • 13
  • 53
  • 83
8
votes
5 answers

Jquery UI - reload selected tab?

Is there a way to reload the selected tab I know there is the .load() function. But it wants a tab index and I don't seem to see a way to grab the selected tabs id.
Renari
  • 822
  • 7
  • 16
  • 32
8
votes
3 answers

Loading JSON-encoded AJAX content into jQuery UI tabs

We want all of our AJAX calls in our web app to receive JSON-encoded content. In most places this is already done (e.g. in modals) and works fine. However, when using jQueryUI's tabs (http://jqueryui.com/demos/tabs/) and their ajax functionality,…
pocketfullofcheese
  • 8,427
  • 9
  • 41
  • 57
8
votes
4 answers

JQuery UI tabs: How do I navigate directly to a tab from another page?

JQuery UI tabs are implemented by named anchors in an unordered list. When you hover over one of the tabs you can see this in the link shown at the foot of the browser: http://mysite/product/3/#orders Above would be the "orders" tab for example.…
Chris Simpson
  • 7,821
  • 10
  • 48
  • 68
8
votes
8 answers

jquery ui tabs major style change

I am using jquery UI tabs and I need to majorly change the styling on it. I need to rempve the background image, the borders, almost everything. I need it to look minimal, and not like it's self contained. What's the best way to do this? I need…
Jonah
  • 2,040
  • 7
  • 29
  • 32
8
votes
4 answers

Numbers of an ordered list turn into 0 while clicking through jquery tabs

I have a page with jQuery tabs on it. In those tabs is an ordered list. This is my html code:
7
votes
1 answer

Preselecting ajax-enabled tab in jquery UI tabs

I have exactly the same problem as described here: http://bugs.jqueryui.com/ticket/7930. The problem is that the maintainer cannot reproduce it, so the ticket is closed. My code looks as following: