just trying to understand your implementation. My issue is that if I want the 'active' class added to the parent of the anchor, I lose both #hash link functionality (I can't load the page with a non-default tab active), and history. Is that what you're trying to solve?:
Does your modification fix this?
THANKS
<ul id="#tabs">
<li><a href="#tab-content-1">tab1</a></div>
<li><a href="#tab-content-2">tab2</a></div>
</ul>
my jquery looks like this:$("#tabs").tabs({tabs:'li'})
The tabs work, .active gets added to the li (what I want, for CSS reasons), but but hash URLs (and history) don't work.Does your modification fix this?
THANKS