reload current tab ...
reload current tab ...
I'm trying to reload a tab with a different url on a click, only I
don't actually (easily) know which tab is selected. I suspect I'm
missing something simple (pretty new to jquery):
$("...").click(function(e){
$('.tabs > ul').tabs( "url", 1, e.target.href );
$('.tabs > ul').tabs( "load", 1 );
return false;
});
This does what I want, as long as I fix the index of the tab to be
reloaded ... but if I don't?