Click here to Skip to main content
15,886,578 members
Articles / Web Development / HTML
Tip/Trick

Simple rating control using jQuery

Rate me:
Please Sign up or sign in to vote.
4.06/5 (48 votes)
4 Dec 2012CPOL 60.9K   5K   15   17
A jQuery rating control.

503495/demo.gif

How to use

  1. Include the necessary JS and CSS files.
  2. XML
    <script type="text/javascript" src="rating.js"></script>
    <link rel="stylesheet" type="text/css" href="rating.css" />
  3. Create a text box element (the class "rating10" contains a num "10", this will display 10 starts).
  4. XML
    <input type="text" class="rating rating10" />
  5. Fire plug-in using jQuery selector.
  6. JavaScript
    $(function ()
    {
        $('.rating').rating();
    });
  7. When form submits, you can access these values in the server-side script using $_POST (PHP), Request.Form (ASP or ASP.NET).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionquestion Pin
Member 131145329-Oct-17 20:16
Member 131145329-Oct-17 20:16 
QuestionSave ratings Pin
Meer Wajeed Ali17-Aug-17 3:57
professionalMeer Wajeed Ali17-Aug-17 3:57 
QuestionDisplay value Pin
Ceil Phantomhive3-Nov-16 1:35
Ceil Phantomhive3-Nov-16 1:35 
GeneralMy vote of 4 Pin
Manojamsoft9-Jun-16 3:41
Manojamsoft9-Jun-16 3:41 
GeneralMy vote of 4 Pin
Manojamsoft9-Jun-16 3:40
Manojamsoft9-Jun-16 3:40 
QuestionUncaught Type Error Pin
NikiGrly12-Jan-16 3:18
NikiGrly12-Jan-16 3:18 
QuestionHow can we clear the control after submit? Pin
Visanth V Nair24-Nov-14 21:19
Visanth V Nair24-Nov-14 21:19 
QuestionRight to left direction Pin
Member 1051364231-May-14 21:31
Member 1051364231-May-14 21:31 
AnswerRe: Right to left direction Pin
Member 1209985117-Jan-16 21:51
Member 1209985117-Jan-16 21:51 
QuestionSet rating control as readonly after rateEnd event Pin
Member 1051364219-May-14 21:40
Member 1051364219-May-14 21:40 
AnswerRe: Set rating control as readonly after rateEnd event Pin
mahongtao19-May-14 23:48
mahongtao19-May-14 23:48 
QuestionServer Side - Help!? Pin
Member 107242181-May-14 0:23
Member 107242181-May-14 0:23 
AnswerRe: Server Side - Help!? Pin
Member 1209985117-Jan-16 21:45
Member 1209985117-Jan-16 21:45 
GeneralMy vote of 5 Pin
dr.progeny25-Apr-13 20:17
dr.progeny25-Apr-13 20:17 
GeneralRe: My vote of 5 Pin
mahongtao25-Apr-13 21:04
mahongtao25-Apr-13 21:04 
QuestionHow can i inter change blue color and orange color? Pin
balajikcp814-Feb-13 2:18
balajikcp814-Feb-13 2:18 
AnswerRe: How can i inter change blue color and orange color? Pin
mahongtao25-Apr-13 20:31
mahongtao25-Apr-13 20:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.