Skip to content

agent4788/star-rating

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

jQuery star-rating plugin

Options

wrapperClasses: 'p-5 shadow',
starIconEmpty: 'fa fa-star-o',
starIconFull: 'fa fa-star',
starColorEmpty: 'lightgray',
starColorFull: '#FFC107',
starsSize: 4, // em
stars: 5,
showInfo: true,
titles: ["Sehr schlecht", "Schlecht", "Mittel", "Gut", "Sehr gut!"],
inputName: 'rating'

events

change // trigger when star is clicked

Example

<div class="rating"></div>

<script>
  $('.rating').starRating(
  {
    starSize: 1.5,
    showInfo: false
  ));
  
   $(document).on('change', '.rating',
        function (e, stars, index) {
            alert(`Thx for ${stars} stars!`);
        });
</script>

About

jQuery star rating

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 100.0%