I'm not sure if this is possible at the moment, and testing done with testing seems to give odd results.
I have a section of 4 tabs on one page, inside these tabs there are several sections of text, each of which has a unique binding name.
What I'm trying to do is a link from another page to say the 4th block of content on tab 3 ...
all tabs work fine, and if I refer to sections of content on the first tab, it works fine .. its when I want to bind to tabs that are first, which becomes complicated.
I tried
<a href="http://example.com#tab-3#content-4" ></a>
but it doesn't work at all
and when i use only
<a href="http://example.com#tab-3"></a>
I also saw that this is implemented - however, it seems to have the same functionality as using the above code, regardless of whether it is in my jquery call
$(function(){ $('tabs').tabs(); var hash = location.hash; $('tabs').tabs( "select" , hash ); });
When choosing one of the two options above, when the third tab is selected, I reached the end of the page. I assume this is because all the tabs are put into list items, and then jqueryui turns them into tabs .. actually moving the contents of the tab for number 3 from bottom to top to the top of the tab section.
if anyone knows how I could link to the 4th block of content on the third tab, I would be extremely helpful.
someone, the solution may lie in $ _post and $ _get data .. but I'm not sure if this is true, and even then I'm not sure how to implement it using jqueryui
Thank you in advance