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!

link|improve this question

feedback

1 Answer

The link you provided has a tabs example

http://www.asual.com/jquery/address/samples/tabs/#Overview

You can snoop the code with firebug. It looks clean

link|improve this answer
Good try but parameters work differently. – Carl R Jul 11 '11 at 21:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.