Adrian
Adrian

Reputation: 2656

jQuery Star Rating Plugin

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/

Upvotes: 0

Views: 1056

Answers (3)

Dan Dascalescu
Dan Dascalescu

Reputation: 151885

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.

Upvotes: 1

Rho
Rho

Reputation: 1010

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

Then put this in your script:

$("#stars-wrapper1").stars({
    captionEl: $("#stars-cap")
});

Upvotes: 1

Rafay
Rafay

Reputation: 31043

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

here have a look at Test 3-B

Upvotes: 3

Related Questions