You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Forum user: bob@sturim.org

Basic information

Registered Aug 28, 2009
Last login Jan 30, 2010
Forum posts 8
Direct URL http://www.flowplayer.org/forum/users/14792

Latest forum posts

Posts:

Registered:

me too

Posted: Jan 30, 2010

does this only happen in IE?

Posts:

Registered:

me too

Posted: Jan 4, 2010

yeah, I'm trying to load a scrollable inside tabs that are ajax generated -- seems impossible.

Posts:

Registered:

Can you nest non-ajax tabs inside of ajaxed tabs?

Posted: Dec 30, 2009

Can't seem to get this to work -- my ajax tabs load fine ... but, the nested tabs are not working.

Before I post some code, I'm just wondering if this is possible or not.

thanks

Posts:

Registered:

many xhtml validation issues could be a problem

Posted: Dec 24, 2009

ok -- it was worth a try.

Perhaps it's because you have numerous xhtml validation errors on your page. I would try correcting them and then retesting the page.

http://is.gd/5zS1S

17 in total.

You are re-using CSS ids all over the place. Remember an "id" is used when an item is unique and will only appear once on a given page. Use a "class" when items appear multiple times on a page.

like this

<div class="container-content">

instead of

<div id="container-content">

Posts:

Registered:

I believe you have a syntax error

Posted: Dec 24, 2009

try removing the trailing comma here

fadeInSpeed: 'slow',

to this

fadeInSpeed: 'slow'

Posts:

Registered:

trying to get this to work as well

Posted: Dec 24, 2009

Anyone else have a code sample they could share?

Posts:

Registered:

yep

Posted: Nov 29, 2009

me too. not sure you have have tooltips with dynamically loaded content

Posts:

Registered:

Keep the last selected tab 'selected' for subsequent page loads -- need help converting this working code into a plugin

Posted: Nov 11, 2009

I have this code working --http://www.pastie.org/692856 -- You can copy and paste it into an empty html page and presto it will work.

It sets a cookie (using the jquery cookie plugin) -- and when a user returns to the page, it will set the index of the tabs to what ever tab was previously selected.

I now want to improve this code by converting it into a plugin.

Ideally, I'd like to be able to chain the function when I initialized the tabs, like this:

$("ul.tabs").tabs("div.panes > div").rememberTabSelected()

Or something similar.

Can anyone offer some tips on getting started with the conversion?

Thanks,

Rich