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 | 112 | 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 | 18 days ago | 90 | October 13, 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 | 141 | 25 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,180 | 100 | 149 | a day 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 tour/walkthrough plugin for developers. It includes limited automatic behavior, more like a 'toolkit' than some of the others out there.
CoffeeScript and LESS source files are available in src
while compiled/pre-processed/minified files are in dist
. Wire up your asset packager appropriately or include the css and js by hand old-school:
<script src='path/to/jquery.min.js'></script>
<script src='path/to/jquery-tourbus.min.js'></script>
<link href='path/to/jquery-tourbus.min.css' media='all' rel='stylesheet' type='text/css' />
jQuery is the only dependency. I think technically it will be able to support Zepto without too much difficulty.
Docs coming to this readme at some point, but for now you'll find all the details and a demo on the website.
This project uses grunt plus an npm package.json
for development (the plugin itself is not on npm). That means you can hack on it by forking the repo and:
$ npm install -g grunt-cli
$ git clone [email protected]:<you>/jquery-tourbus.git
$ cd jquery-tourbus
$ npm install
$ grunt build
$ open site/index.html # on OSX, opens the demo site in your browser
Other useful tasks:
# run headless tests
$ grunt test
# build test js/etc and open them in your browser
$ grunt build coffee:test
$ open test/runner/basic.html
# clean up minified source in site/ and compiled tests in test/
$ grunt clean
# watch for changes to sources and build
$ grunt watch:dev
# watch for changes to tests and build
$ grunt watch:test
# prepare compiled/minified sources for deploy
$ grunt dist
If you're working on a pull request, please remember to work on a local branch instead of master.