1.0.1 • Published 3 years ago

stretchy-tabs v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

stretchy tabs

Chrome style tab-resizing for jQuery UI tabs

stretchy tabs provides methods for adding and removing tabs

##Initialize stretchy tabs

$( ".tabs" ).tabs("stretchyTabs");

##Methods

  • add
  • remove

e.g:

$( ".tabs" ).tabs("add", "new tab", "content goes here");
$( ".tabs" ).tabs("remove", index); //index is an integer for the tab position

##Events

  • tabsbeforeremove,
  • tabsremove,
  • tabsadd

e.g:

$( ".tabs" ).on("tabsbeforeremove", func);
$( ".tabs" ).on("tabsremove", func);
$( ".tabs" ).on("tabsadd", func);

##Demos