Hi, I noticed when I create my JQuery tabs, the "onShow" callback function is automatically invoked.
$('#container').tabs(tab_id, { remote: true, fxFade: true, fxSpeed: 'fast', onShow: function(clicked, shown, hidden) { clickTabAction(shown); } }); Is there a way to create the tabs without having the "onShow" action invoked the first time? Note, if people start clicking on the tabs, I would like the function called. Thanks, - Dave