Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Bootstrap Star Rating | 1,038 | 763 | 12 | 3 days ago | 31 | September 20, 2021 | 2 | other | JavaScript | |
A simple yet powerful JQuery star rating plugin with fractional rating support. | ||||||||||
Jquery Bar Rating | 705 | 92 | 13 | 3 years ago | 6 | February 19, 2017 | 33 | mit | JavaScript | |
jQuery Bar Rating Plugin - minimal, light-weight jQuery ratings. | ||||||||||
Cfviz | 649 | 2 years ago | 6 | JavaScript | ||||||
Visualizes user data from codeforces.com using the official API | ||||||||||
Bootstrap Rating Input | 323 | 6 | 5 years ago | 1 | August 05, 2016 | 8 | mit | HTML | ||
Another plugin that eases the generation of rating stars for jQuery and Bootstrap | ||||||||||
Starrr | 196 | 423 | 3 years ago | April 25, 2016 | 15 | JavaScript | ||||
1-5 star rating, in jQuery. | ||||||||||
Rateit.js | 146 | 11 | 2 | 2 years ago | 8 | March 10, 2021 | 8 | mit | JavaScript | |
Rating plugin for jQuery. Fast, Progressive enhancement, touch support, icon-font support, highly customizable, unobtrusive JavaScript (using HTML5 data-* attributes), RTL support, supports as many stars as you'd like, and also any step size. | ||||||||||
Jquery Star Rating | 101 | 7 years ago | April 15, 2012 | 3 | JavaScript | |||||
jQuery Star Rating Plugin | ||||||||||
Angular Rateit | 50 | 6 | 5 years ago | 4 | May 04, 2018 | 2 | mit | JavaScript | ||
This directive was inspired by the jQuery (star)rating plugin RateIt. However this package will work without jQuery. | ||||||||||
Shipping Calculator | 46 | 7 years ago | 16 | JavaScript | ||||||
To use in Shopify to add a shipping rates calculator to the cart page. Requires jQuery. | ||||||||||
Restaurant Picker Jquerymobile Demo | 42 | 11 years ago | 1 | JavaScript | ||||||
A jQuery Mobile demo web app that enables the user to choose a restaurant based on plate, location and other user rating |
1-5 (or 1-n
) star rating in < 75 lines of code.
<div class='starrr'></div>
$('.starrr').starrr()
$('.starrr').starrr({
rating: 4
})
$('.starrr').starrr({
max: 10
})
$('.starrr').starrr({
readOnly: true
})
$('.starrr').starrr({
change: function(e, value){
alert('new rating is ' + value)
}
})
Or if you prefer events:
$('.starrr').on('starrr:change', function(e, value){
alert('new rating is ' + value)
})
npm install
npm install -g grunt-cli
src/
grunt
to compile themMIT