I'm using jQuery Address to perform deep linking in an ajax site.
I have multiple arguments like this: /SomeController/SomeAction#/586?e=5808&tab=#First
Q1: How do I change just the "tab" parameter?
When I do it like this...
$("#tabs").bind("tabsselect", function(event, ui) {
$.address.parameter("tab", ui.tab.hash);
}
..the result is: /SomeController/SomeAction#/586?e=5808&tab=#First#Third
instead of the desired: /SomeController/SomeAction#/586?e=5808&tab=#Third
In the event above the other parameters in the url hash should be considered unknown and must remain as they are.
Q2: How do I remove a parameter from the url hash?
Like above but if I want to remove the tab parameter completely.
Thank you!