vote up 0 vote down star
1

I am currently investigating replacing the tabs provided by a Struts 1 tag library with the tabs provided by jQuery UI. I have successfully managed to get the tabs integrated with the existing application but I am struggling on how to set the selected tab using a parameter on the incoming URL i.e. myurl.com/action.do?selectedTab=SecondTab

As a new comer to javascript and jQuery, I was wondering could give me some pointers on where to start?

Thanks In Advance

David

flag

80% accept rate

3 Answers

vote up 4 vote down check

using http://www.mathias-bank.de/2007/04/21/jquery-plugin-geturlparam-version-2/

$(document).ready(function(){
    var param = $(document).getUrlParam('selectedTab');
    $('#menu').tabs('select', param);
});

From documentation:
#select

Signature:
.tabs( 'select' , [index] )

Select a tab, as if it were clicked. The second argument is the zero-based index of the tab to be selected or the id selector of the panel the tab is associated with (the tab's href fragment identifier, e.g. hash, points to the panel's id).

link|flag
vote up 1 vote down

The following link of a JQuery Plugin seems a possible candidate for a solution, As it provides you with the URL and the component parts you would then be able to match the value with either the index of the tab you want to select or by id or class through the JQuery selector:

http://www.oakcitygraphics.com/jquery/jqURL/jqURLdemo.html?var1=1&var2=2&var3=3

link|flag
vote up 0 vote down

I guess is enough to load history and ghet this to work.

link|flag

Your Answer

Get an OpenID
or

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