Hi There,
I have a tab which has a form in it, and once the form is submitted it adds parameters to the url, and gives results below the form. All this happens inside a tab.
Originally i set the action method of the form to arrive at the URL then #pricing to select the tab autoamtically. However this doesnt seem to work in IE.
So to try a different method i'm trying this:
$('#price_form').submit(function() {
$('#hotel_tabs_block_id').tabs('select', '#tab_pricing');
});
But of course when the page reloads, it's resetting the above. Does anyone have a better way of doing this?
I just need to fill in a form, then load the page with a specific tab!
All help appreciated,
Thanks,
ASKER