Pass get param to ajax driven tabset ?

Pass get param to ajax driven tabset ?


I have a bunch of tabs (jQuery UI Tabset), and then a series of empty
divs to hold each tabs content.
I want to pass a GET param to the url, when Im loading a tab
(sometimes I flick to another tab as a result of programatical
changes, rather than the user simply clicking o the tab).
So I construct a url, set the tabs url, and then select it
var s = 'transactions.php?accid='+a;
$('#tabset > ul').tabs('url', 2, s);
$('#tabset > ul').tabs('select', 2);
The problem is, the GET param does not get sent to the url. It just
loads the tab content from transactions.php (rather than
transactions.php?accid=6 etc)
Ive added alerts into the jQuery UI source but I cant really figure
out where its going wrong.
The url is set correctly, but when it later issues the ajax call to
load the tab, the GET param is no longer present.
Please can someone help me, Im really struggling with this one
Thanks