Dynamic urls for ajax tabs

Dynamic urls for ajax tabs


I need to send at least one dynamic parameter as part of the url used
to load ajax data into various tabs, like this:
<a href="?cmd=Type.edit&typeID=[typeID]">Status</a>
...where '[typeID]' needs to be replaced by the actual ID of the item.
What's the best approach?
I tried using javascript urls for the tab hrefs, but no joy.
When I look at the tab urls in the dom after the tabs() call, my
original ons are gone, replaced with ones like this:
<a href="#ui-tabs-40">Status</a>
The tabs plugin must have removed the orignals and attached events
that use these.
Thanks,