Im using YUI3 and would like to deep link my tabs. I used tabview + history from YUI. how do i change the value for the url parameter

/#tab-2 replace to /#tab-description

Thanks in advance.

link|improve this question
This is probably related to stackoverflow.com/questions/4674572/… Help is on the way in YUI3.4 -- yuilibrary.com/projects/yui3/ticket/2529954 – mjhm Jul 15 '11 at 1:21
feedback

1 Answer

You can use:

http://developer.yahoo.com/yui/3/api/HistoryHash.html

It has a setHash method which can do that work for you. Under the hood, it just changes what you have above. Ideally, you'll have some sort of infrastructure in history to listen for the hash change events (http://developer.yahoo.com/yui/3/api/HistoryBase.html, history:change) to detect the change and perform you application code)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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