jQuery UI Tabs: Disable "First Tab" -
i'm looking load jquery ui tabs widget without "first tab" beingness loaded default.
i tried following, first tab still beingness shown:
$('#tabs').tabs({ selected: -1 });
you can set collapsible alternative true
, active alternative false
:
$("#tabs").tabs({ collapsible: true, active: false });
jquery-ui tabs
No comments:
Post a Comment