Skip to content

SphereSoftware/jquery_rating

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rating

jQuery plugin to display rating component

Installation

Include script after the jQuery library:

<script src="/path/to/jquery.rating.js"></script>

Usage

Create an html element on the page

<div class="rating_element"></div>

Initialize rating component when scripts loaded:

$('.rating_element').rating();

This will create rating component with default settings.

Customization

Plugin supports next options:

$('.rating_element').rating({
    orientation: 'horizontal',
    width: 300, 
    height: 30,
    scale: 1.5,
    grades: ['5','4','3','2','1'],
    grade: 1,
    onGradeChanged: function () {}
  });
orientation: 'horizontal/vertical' // define orientation of the component
width: 200 // define width of maximized component
height: 20 // define height of maximized component
scale: 1.5 // define how many times minified component will be related to maximized component. eg. 300/1.5 = 200
grades: ['great', 'good', 'better', 'woops', 'bad'] // define grades that will be displayed on the page.
grade: 2 // Define at which grade component will be initialized. eg. 2 => good
onGradeChanged: function () {} // callback to be called when user confirm selection of grade (click on grade in maximized view)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published