I am selecting the tabs from another object and need to disable the tab click event so that the user can not change tabs by clicking on them, but the other object that controls the tabs can still work.
I have tried to unbind the tab's click even but that does not work:
$('.tabs-inner').unbind();
How can I disable the click event whilst still allowing the tabs to be selected programatically ?