Annoying forum system... can't edit my own comments... the 2 lines of code are missing, because back then I didn't know how to work this forum stuff... Ok, redited:
Hi All!
Well, 2.3 doesn't have an anchor system either... So I pulled up my sleeves and got busy. And I did it

Ok, firstly go to file "plugin_jw_ts.php" of the plugin, and edit the line that says:
Code:
$mosConfig_live_site/mambots/content/plugin_jw_ts/tabs_slides_comp.js
and remove the "_comp", which means it'll become this:
Code:
$mosConfig_live_site/mambots/content/plugin_jw_ts/tabs_slides.js
Ok, save and close. Next file is "tabs_slides.js":
- go to the line "var tabberOptions = {", look a bit lower to the "'onLoad': function(argsObj)" line. You're going to have to change that particular method to this:
Code:
'onLoad': function(argsObj)
{
var t = argsObj.tabber;
var show_type=unescape(document.location.hash.substring(1));
var i;
// alert('hash = ' + i);
if ((show_type=="") || (show_type==null))
{
if (t.id) {
t.cookie = t.id + t.cookie;
}
i = parseInt(getCookie(t.cookie));
if (isNaN(i)) { return; }
t.tabShow(i);
}
else
{
t.tabShowByName(show_type);
}
// alert('getCookie(' + t.cookie + ') = ' + i);
},
As you can see, this allows linking and still uses the cookie jar by default 
- next, you're going to add a new method
find "tabberObj.prototype.tabShow=function(tabberIndex)". This method is the standard show'er. Well, to still keep things neatly tight (as the code already is... probably so the javascript parser can get to business post haste :P), add the following NEW method, after the "return this;};" close line of the tabShow method:
Code:
tabberObj.prototype.tabShowByName=function(tabberName){var i;for(i=0;i<this.tabs.length;i++){if(this.tabs[i].headingText==tabberName){this.tabShow(i);break;}}return this;};
Save this file and close it! And voilá! You've got a
direct anchor type route to your tab! Use the exact same name in the link as of the tab.
In case your tab has spaces or special characters, use the %20 symbol. How do I know this:
http://www.thescripts.com/forum/thread535179.htmlAs they show in the latter thread:
http://codinginparadise.org/my_ajax_app#hello%20worldWell... I can only hope the good people at JoomlaWorks.gr have their eyes wide open.
I wanna thank everyone that allowed this to happened... couldn't have done this without you

PS: If any of you guys at JoomlaWorks are reading this... I can only say that I'm a newbie at javascripting, and in about 3 hours got this up and running... so there :P Oh, and you're welcome to use this

And the "comp" version would be useful in the future

eheheh