World's slowest coder reporting in......
so, I have not given up on this, and I do have this working on my test board, but I have TWO problems with it.
Problem1: I am not able to add more than one category to a tab. This sort of makes the tab kind of pointless imo.
Problem2: I cannot work out how to get the state to persist (i.e. when a user has selected tab whatever, when they return to the page it is no longer at the selected tab but at the first tab)
I did a lot of googling, and have read half of stackoverflow.com, but no luck. So far, the only simple tab solution I have found WHICH PERSISTS is labroccas Tabbed Menu, which is a pluginified version of this:
http://www.dynamicdrive.com/dynamicindex...ontent.htm
So - my question is, how would I change my existing script to harness the state change and ADD the ability to show more than one category in a tab?
I think the more than one category is somehow here >>
Code:
if (content) {
this.tabs.pluck("id").each(function(elid) {
$(elid).className = "";
$(elid + "_data").hide();
});
And I don't have the foggiest on the persist.
Course, I see that having the tab persist is a VERY popular thing (I see requests for the Profile module to have this feature) so I hope this question will pique your interest