vote up 0 vote down star

I'm using jquery ui tabs widget. I've not used a jquery theme as i prefer to do my own css and stuff. I've got it working, but what i'd like is to have a different animation effect for the tab content when a different tab is clicked. What i'd like is for the new tab content to slide in from the left.

At the moment i have:

$("#tabs").tabs({ fx: {slide: 'slow' } }); });

I know the code above is just slide and not slide left but it doesn't even do a slide! I have downloaded the slide effects as part of my custom ui download. I don't know why it isn't working! Is it some css that i'm lacking?! I don't know!!!

flag
Did you get this working? – Phill Pafford May 27 at 14:11
No! I've tried all sorts of things and had a look at the jquery ui download to make sure that i've downloaded the right stuff. Whatever effect i ask it to perform, it just does the same thing, hide old content, show new. – audiopleb May 28 at 10:52

2 Answers

vote up 0 vote down

Not sure which version you use, but with 1.7.1 here is how to do it:

$("#tabs").tabs({ 
    fx: { height: 'toggle', duration: 'slow' }
});
link|flag
vote up 0 vote down

@Gyuri This slides the content in from the top.

link|flag

Your Answer

Get an OpenID
or

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