JQuery Selectric Versions Save

jQuery plugin for easy manipulation and customization of HTML selects

1.13.0

6 years ago
  • Added forceRenderAbove and forceRenderBelow option (thanks @SassNinja!) #197

1.11.1

7 years ago
  • Detect item visibility function now correctly shows current highlighted item inside a group.
  • Other small fixes.

1.11.0

7 years ago
  • Added support for "multiple" attribute (thanks @gearsdigital!) #80
  • Added index parameter to onBeforeSelec/onSelect callback #96
  • Added support for label tags. #103
  • Added option to customize select on mobile but retain native dropdown behavior (thanks again @gearsdigital!!) #90
  • Various bug fixes #77 #87 #93 #115 #118 #126

1.10.1

7 years ago

Improvements to keyboard navigation and accessibility.

1.10.0

7 years ago

Various changes to the code to be more simple, testable and increase code coverage. Fixed "Invalid regular expression" error, #111

1.9.6

8 years ago

Only render selectric-items at top, if they fit in the viewport, #110

1.9.5

8 years ago
  • Wrapped code in UMD (Universal Module Definition) to work with Browserify/Webpack.
  • Added !default to variables in the Sass file.

1.9.4

8 years ago

Added "main" property in package.json, to work with browserify/webpack.

1.9.3

9 years ago

1.9.2

9 years ago
  • (#70) Added labelBuilder option. Can be used similarly to optionsItemBuilder:
$('select').selectric({
  labelBuilder: function(currItem) {
    return '<strong><em>' + currItem.text + '</em></strong>';
  }
});