MIF_E31220215/peramalanmovingaverage/public/assets/vendors/starrr
Nur Mita Upi Lestari 7c6f406794 First commit 2025-05-20 09:09:23 +07:00
..
dist First commit 2025-05-20 09:09:23 +07:00
src First commit 2025-05-20 09:09:23 +07:00
.bower.json First commit 2025-05-20 09:09:23 +07:00
Gruntfile.coffee First commit 2025-05-20 09:09:23 +07:00
README.md First commit 2025-05-20 09:09:23 +07:00
bower.json First commit 2025-05-20 09:09:23 +07:00
index.html First commit 2025-05-20 09:09:23 +07:00
package.json First commit 2025-05-20 09:09:23 +07:00

README.md

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