[jQuery] Re: tabs collapsed by default on open

2009-04-17 Thread robintrain...@yahoo.com

THANK YOU SO SO MUCH!

On Apr 16, 7:29 pm, Klaus Hartl klaus.ha...@googlemail.com wrote:
 On 16 Apr., 20:38, robintrain...@yahoo.com robintrain...@yahoo.com
 wrote:

  Hello everyone. Is there a way to have tabs created in jQuery that are
  collapsed when the page loads? I use this:

  $(document).ready(function(){
  $(#tabs).tabs({ collapsible: true

  });
  });

  to allow the user to click on the tab to collapse it once the page
  loads. But how do I get the tab content to be hidden to begin with?

 Use:

 $(document).ready(function(){
     $(#tabs).tabs({
         collapsible: true,
         selected: -1
     });

 });

 You don't necessarily have to use collapsible in this case by the way.

 --Klaus


[jQuery] Re: tabs collapsed by default on open

2009-04-16 Thread Klaus Hartl

On 16 Apr., 20:38, robintrain...@yahoo.com robintrain...@yahoo.com
wrote:
 Hello everyone. Is there a way to have tabs created in jQuery that are
 collapsed when the page loads? I use this:

 $(document).ready(function(){
 $(#tabs).tabs({ collapsible: true

 });
 });

 to allow the user to click on the tab to collapse it once the page
 loads. But how do I get the tab content to be hidden to begin with?

Use:

$(document).ready(function(){
$(#tabs).tabs({
collapsible: true,
selected: -1
});
});

You don't necessarily have to use collapsible in this case by the way.

--Klaus