Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Selectize.js | 12,980 | 600 | 111 | a month ago | 7 | July 12, 2018 | 60 | apache-2.0 | SCSS | |
Selectize is the hybrid of a textbox and <select> box. It's jQuery based, and it has autocomplete and native-feeling keyboard navigation; useful for tagging, contact lists, etc. | ||||||||||
Bootstrap Fileinput | 5,317 | 1,182 | 35 | 11 days ago | 89 | August 17, 2022 | 20 | other | JavaScript | |
An enhanced HTML 5 file input for Bootstrap 5.x/4.x./3.x with file preview, multiple selection, and more features. | ||||||||||
Jstree | 5,092 | 398 | 139 | 18 days ago | 32 | September 19, 2023 | 5 | mit | JavaScript | |
jquery tree plugin | ||||||||||
Jquery Mask Plugin | 4,651 | 250 | 66 | a year ago | 30 | July 31, 2019 | 118 | other | JavaScript | |
A jQuery Plugin to make masks on form fields and HTML elements. | ||||||||||
Unveil | 4,272 | 3 years ago | 1 | February 03, 2015 | 106 | JavaScript | ||||
A very lightweight jQuery plugin to lazy load images | ||||||||||
Malihu Custom Scrollbar Plugin | 4,110 | 299 | 58 | 2 years ago | 11 | July 10, 2016 | 412 | other | JavaScript | |
Highly customizable custom scrollbar jQuery plugin, featuring vertical/horizontal scrollbars, scrolling momentum, mouse-wheel, keyboard and touch support etc. | ||||||||||
Jquery Placeholder | 4,073 | 120 | 11 | 3 years ago | 4 | January 12, 2016 | 29 | mit | JavaScript | |
A jQuery plugin that enables HTML5 placeholder behavior for browsers that aren’t trying hard enough yet | ||||||||||
Animsition | 3,749 | 21 | 4 | 4 years ago | 8 | April 26, 2016 | 76 | mit | CSS | |
A simple and easy jQuery plugin for CSS animated page transitions. | ||||||||||
Bootstrap Multiselect | 3,620 | 82 | 25 | 8 months ago | 4 | August 01, 2021 | 302 | other | HTML | |
JQuery multiselect plugin based on Twitter Bootstrap. | ||||||||||
Overlayscrollbars | 3,172 | 100 | 138 | 6 days ago | 58 | November 22, 2023 | 7 | mit | TypeScript | |
A javascript scrollbar plugin that hides native scrollbars, provides custom styleable overlay scrollbars and keeps the native functionality and feeling. |
A simple jQuery plugin for equalizing the heights of elements in a row.
When combined with Modernizr feature detection this plugin can be used as part of a fallback for browsers that do not support flexbox
. The plugin includes a check for window resize events and adjusts the heights accordingly.
Note: I did not write this code - if you know the source let me know and I will attribute it.
$ bower install --save equalize-heights
Target your grid wrappers and grid cells.
var gridWrapper = $('.grid-wrapper');
if (gridWrapper.length) {
gridWrapper.each(function() {
$(this).equalizeHeights({
childElement: ".grid-cell"
});
});
}