0

Anyone who use jQuery Star Rating Plugin: it is possible to show a label (very poor, etc.), like on this another star rating:

http://orkans-tmp.22web.net/star_rating/

Adrian
  • 2,576
  • 9
  • 49
  • 97
  • 1
    Add a label div, then on `mouseover` just set the contents of the label appropriately (depending on what star was `mouseover`ed. – pimvdb Mar 26 '11 at 12:35

3 Answers3

3

http://www.fyneworks.com/jquery/star-rating/#tab-Testing

here have a look at Test 3-B

Rafay
  • 30,950
  • 5
  • 68
  • 101
1

If mobile/touch support is important to you, check out the rateit plugin plugin. I've evaluated star-rating and a number of other rating plugins to select one for repackaging for Meteor.js, and rateit was the best.

Community
  • 1
  • 1
Dan Dascalescu
  • 143,271
  • 52
  • 317
  • 404
  • I am trying to use rateit but have not figured out how to install it properly. Do you know where the image files go? The documentation leaves a lot ot be ddesired. – ron tornambe Jun 05 '16 at 18:32
1

Add an onHover to your element with an id of #stars-cap

Then put this in your script:

$("#stars-wrapper1").stars({
    captionEl: $("#stars-cap")
});
Rho
  • 1,010
  • 2
  • 11
  • 17