Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 608 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 608 Bytes

extRating - jQuery Rating Plugin

The extStar Rating Plugin is a plugin for the jQuery Javascript library that creates star rating control based on text input.

Usage

$(document).ready(function () {
  $("#rating_input_id").extRating({
    activeStarPath: 'activeStar.png', //path to active star image, default - '/assets/extRating/activeStar.png'
    inactiveStarPath: 'inactiveStar.png', //path to inctive star image, default - '/assets/extRating/inactiveStar.png'
    numberOfStars: 10 // number of stars, default - 5
  });
});