Lucas Fernandes
Lucas Fernandes

Reputation: 1416

jQuery Tab Fade

I only need a fade effect in my tab. I tryed this: but didnt work.

code follows:

http://jsfiddle.net/Chead/8cgR7/

<script type="text/javascript">
            var $k = jQuery.noConflict()

            $k(function() {
               $k('#full-tab').tabs({
                 fx: {
                opacity:'toggle'   
                    }
                    });
                });
</script>

Thanks

Upvotes: 0

Views: 524

Answers (1)

sensei
sensei

Reputation: 7562

$('#full-tab').tabs('option', 'fx', { opacity: 'toggle', duration: 'fast' });

You have to use jquery-ui of course.

Upvotes: 1

Related Questions