jQuery UI Tabs - SlideToggle? -
The following codes are rotated through the tabs I have set and it works well for them to disappear and out, However, I am thinking that content can be touched to slide it out and to the outside.
$ ("# product_rotator"). Tab ({fx: {opacity: "toggle"}}). Tab ("to rotate", 7000);
I tried to convert "toggle" to "slide toggle", but it did not work ...
Thanks in advance!
Use the following fx
option.
$ ("# tabs"). Tabs ({collapsible: true, fx: {height: 'show', opacity: 'show'}});
Comments
Post a Comment