I've got a set of jQuery UI tabs link so:
<div id="tabs">
<ul>
<li><a href="#some_div">Overview</a></li>
<li><a href="/somelink.html">Some Link</a></li>
<li><a href="/anotherlink.html">Another Link</a></li>
<li><a href="#">Other</a></li>
</ul>
</div>
What I'm trying to achieve is a direct link to a specific tab. So for instance if the tabs were in /tabs.html I'd want to be able to access the anotherlink.html directly but through tabs.html (essentially a link that will open tabs.html but with the anotherlink tab selected). I could obviously create the functionality by doing tabs.html#anotherlink and then checking the url and selecting the correct tab. I just wanted to make sure there was no obvious built in way to do this in jQuery UI.
I couldn't find anything in the documentation so any help would be appreciated!