Question about jquery Tabs plugin

Question about jquery Tabs plugin


Hi there,
I have a question about the jquery Tabs plugin. I downloaded it from
this link: http://stilbuero.de/jquery/tabs/#fragment-28
I use the:
$('#container').enableTab(3); // enables third tab
$('#container').triggerTab(3); // triggers third tab
$('#container').disableTab(3); // disables third tab
to go to other tab, but is there a way to disable the click event on
the tabs? I tried to add and event to the tabs like this:
$(".step_1").click(function(){
    $(this).parents('div').eq(1).disableTab(2);
    $(this).parents('div').eq(1).disableTab(3);
    $(this).parents('div').eq(1).disableTab(4);
    $(this).parents('div').eq(1).disableTab(5);
});
But that doesn't help. Is there a way to disable the click event, but
that the tabs are still shown (tabs-selected etc)
Hope someone can help. Tnx