Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

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

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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