Hi, i am using jquery cookie option to remember tab (and subtab) option after reloading of page and there is a problem in remembering subtabs if there are more then 15 (in my case). Then, after reload, cookie value is being 0. Can it be that cookie got over size limit? Shouldnt happen as only number of selected tab is remembered in cookie. I made example on jsFiddle to see problem: http://jsfiddle.net/DsJRx/4/
Hi, is it possible not to set all div elements of tabs on the load, and just create div with id same as link href element? I am having problems with this. First div is loaded ok (with right content) but changing tabs give me error: jQuery UI Tabs: Mismatching fragment identifier.
I cant post you whole code but ill try to explain it. Reason for not wanting to have all divs there is i load picture to certain div depending on users choice and dont want to load all pictures at once (memory issue).
So lets say with code:
<div id="tabs" class="ui-tabs">
<ul>
<li><a href="#tabs-1">Picture set 1 </a></li>
<li><a href="#tabs-2">Picture set 2</a></li>
//goes on
<div id="tabs-1" class="subTab">
<ul>
<li><a href="#tabs-1-1">Pic1</a></li>
<li><a href="#tabs-1-2">Pic2</a></li>
//goes on
</ul>
// here usually divs for picture is
</div>
//other tabs and subtubs
</div>
Now usually for my example on line 12 there is:
<div id="#tabs-1-1">my picture </div>
<div id="#tabs-1-2">my other picture </div>
But i wont to make just one div for all tabs and sub tubs (lest say div with id: picture) and do this in javascript:
Hi, how can i define how much the handle on slider goes on left after each step? I have slider going from 0 do 10, each step is 1 but as i want to have fixed size of slider and handle i dont want default shifting of 10% to the left, i want to put it to be 30px. Any ideas?