rating

Free javascript star rating plugin

Could you suggest free javascript star rating plugin? ...

show rating average from database with jquery rating plugin

So I was able to make it work, nothing difficult however I have a small problem. if the tutorial/article has a rating of 5 then 5 stars will be yellow, same if it is a rating of 4 or 3. But when the rating is 0 it will still make the first star yellow instead of making them all grey. I'm using the plugin found on http://zensoftware.org/...

Assign places in the rating (MySQL, PHP)

Hi guys! I have a MySQL database with the following columns: id company rating_score rating_place I have companies and rating scores for each company. So, my db looks like: id company rating_score rating_place 75 Intel 356.23 34 Sun 287.49 etc. How can I assign the p...

Accessing Jcomments permission tab in joomla / Enabling hidden menus

hi! The copy of joomla i'm using is edited by the super administrator to not to show the unnecessary menus like installing/uninstalling modules etc etc.. but now, i want to set the permissions of Jcomments and i can't find the menu anywhere to do that.. i found a simple settings page using administrator/index.php?option=com_jcomments&ta...

Elo rating system: start value

I've implemented an Elo rating system in a game. There is no limit for the number players. Players can join the game constantly so the number of players probably rises gradually. How the Elo values are exactly calculated isn't important because of this fact: If team A beats team B then A's Elo win equals B's Elo loss. Hence I've got a ...

Efficient rating system

I'm building a news rating script for this website that has a lot of users. I'm trying to make this websites as efficient as possible and now I'm wondering what would be the most efficient way to keep track of the votes. Of course I don't want users to vote more than once. My first though was to store it in a my MySQL database, but I'm ...

Turn a number into star rating display using jQuery and CSS

I have been looking at jquery plugin and was wondering how to adapt that plugin to turn a number (like 4.8618164) into a 4.8618164 stars filled out of 5. Basically interpreting a number <5 into stars filled in a 5-star rating system using jQuery/JS/CSS. Note that this would only display/show the stars rating from an already available num...

Thumbs system on Urban Dictionary

I was thinking of implementing a thumbs system, but mine would require a registration thus ruling out the possibility of people voting more than once unless they create a new account to do so. So I was wondering about Urban Dictionary's thumb system. How does it work? I would imagine that my IP would be stored in a database, so people wo...

MySQL 5-star rating datatype?

Hi, Would ENUM('1','2','3','4','5') be a sensible datatype for a product rating which must be between 1 and 5? Thanks! ...

Wordpress - GD Star Rating - turn off and on for specific posts?

Hi all fellow Wordpressers, I'm trying to apply GD star rating plugin to 4 specific pages. I know I can do it in the page editor, but I have about 30 pages so don't want to spend ages going through them all. Is there a way in the GD settings to default the plugin to not putting the block automatically on every page. Thanks for your hel...

Drupal: how to rate node filefields?

I have a node type called 'movie' which may contain several subtitle files using the CCK FileField module. Now I'm dealing with FiveStars module, I need to rate each subtitle separately! so the user should rate for subtitles associated with a movie, not the movie itself. confused enough! any idea? ...

Using increment(attribute) to set value for user's rating

I'm thinking about writing an app with question and answer model. Answer has increment attribute that anyone can change to change the rating value. So if I click up on answer that someone else posted, the answer will show 1 point. But, how do I/can I, use that to increase the rating of the overall user. In essence it is very similar to ...

Help: Adding rating to existing posts model in Rails

I've a simple posts model with title:string and rating:integer and I want to add the ability to rate the posts. So far I have #Post controller def increase @post = Post.find(params[:id]) @post.increment! :rating flash[:notice] = "Thanks for your rating." redirect_to @post end #Post show <%= link_to "Rating", increase_post_path %...

Prevent users from voting multiple times in Rails

I've a simple rating system setup in a blog model. I use a custom method to increase rating, which is integer in blog db. def increase @post = Post.find(params[:id]).increment!(:rating) if logged_in? current_user.increment!(:votes) end flash[:notice] = "Thanks for rating" redirect_to posts_url end Right now, I can vote a...

Trouble with converting 5 star rating script to work with jQuery v1.3.2.

Hi, I'm having trouble converting this 5 star rating script that works perfect with jquery revision put out on Date: 2006-09-07 10:12:12 +0200 (Do, 07 Sep 2006) $* $Rev: 276 $ It's the addclass, removeclass, .extend functions that I think are the problem but I can't seem to successfully convert it to work with jquery v1.3.2? Really ne...

code for giving ratings

hi friends, I want to give some type of ratings to my posts in my site. i want to do this coding some like the below site http://www.comminit.com/en/node/222010/2754 i want to do this type of ratings in my site. Does any one have code to do this. or any one can tell from where i can download such type of codes... ...

How do you rate multiple attributes of the same object?

I've not seen this feature as a plug in and was wondering how to achieve it, hopefully using rails. The feature I'm after is the ability to rate one object (a film) by various attributes such as plot, entertainment, originality etc etc on one page/form. Can anyone help? ...

show rating alert when deleting app in iphone?

I have seen in most of the apps which i install using itunes has shows a alert please rate the app when deleting the app? is it by default behaviour or we can create it programmatically in our app? ...

Want to display and implement rating as in ipod app

I want to display and implement the rating in the way apple does in the ipod app. Can anybody tell me how it is done. The code that i want to implement is to be written in a viewController. Thanks in advance. Providing the code would be useful. I am drawing the image in the implementation (.m)file of my UIViewController subclass inside...

What is the best way to prevent customers from rating a product more than once?

Hello, How do I prevent a customer from rating a product more than once? Is it best to use cookies that store the IP address or is it best to store user ratings in the database? I am using MySQL and ColdFusion. Cheers! ...