up vote 0 down vote favorite
1
share [g+] share [fb]

I'm looking for a Ajax rating script similar to the one on metacritic, ign, gamespot, etc. (example)

I've found only star rating systems and one slider that is not similar to the one that I'm looking for. (jquery ui slider)

Anyone knows something like that I'm looking for? Otherwise I'm willing to pay someone for this work.

link|improve this question

52% accept rate
feedback

1 Answer

up vote 1 down vote accepted

It's not hard to roll your own, you just need a combination of jQuery/AJAX, CSS and the server-side poison of your choice.

Here is an example: http://www.99points.info/2010/05/ajax-rating-system-create-simple-ajax-rating-system-using-jquery-ajax-and-php/

Essentially you wire up client-side event handlers which do AJAX HTTP POST requests to your server-side handler/web service, which then return back the response.

Now, that example isn't exactly a "slider" but it illustrates how it can be accomplished.

Check out this site for a multitude of AJAX slider examples - you just need to combine the two principles (rating and slider) and you're good to go.

Obviously if you don't like the "look" of it, you can mess with the CSS/hovering effects to suit your needs, but that should get you up and running.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.