On 3 Nov., 06:46, stevel <[EMAIL PROTECTED]> wrote:
> I managed to solve the selected option.issue. It has to do with my
> variable tab_cookie_id. Changed my code from
> var tab_cookie_id = jQuery.cookie("todos_tab") || 0;
> to
> var tab_cookie_id = parseInt(jQuery.cookie("todos_tab")) || 0;
>
> And my issue was resolved. My guess is the selected option expects an
> integer.
That's correct. With a look into the documentation you wouldn't even
have had to guess ;-)
http://docs.jquery.com/UI/Tabs/tabs#options
--Klaus
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---