bbone/assets/default/starrr
2022-12-26 14:03:09 +05:30
..
dist template:GWM 2022-12-26 14:03:09 +05:30
src template:GWM 2022-12-26 14:03:09 +05:30
.bower.json template:GWM 2022-12-26 14:03:09 +05:30
bower.json template:GWM 2022-12-26 14:03:09 +05:30
Gruntfile.coffee template:GWM 2022-12-26 14:03:09 +05:30
index.html template:GWM 2022-12-26 14:03:09 +05:30
package.json template:GWM 2022-12-26 14:03:09 +05:30
README.md template:GWM 2022-12-26 14:03:09 +05:30

starrr

1-5 (or 1-n) star rating in < 75 lines of code.

Requirements

  • jQuery

Usage

Create the stars

<div class='starrr'></div>
$('.starrr').starrr()

With an existing rating

$('.starrr').starrr({
  rating: 4
})

With more than 5 stars

$('.starrr').starrr({
  max: 10
})

Read-only

$('.starrr').starrr({
  readOnly: true
})

Do something with the rating...

$('.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)
})

Developing

  • npm install
  • npm install -g grunt-cli
  • Make changes in src/
  • Run grunt to compile them

License

MIT