I want to do this evaluation monitor using JQuery. I want to have five slides on my application. Now, every slide, I will need an evaluation and the ratings are as follows: 1-very sad; 2-sad; 3-not so sad; 4-a little happy; and 5-very happy. How can I implement this program? Â
How to evaluate monitor using JQUERY?
Hello Rico Castano,
To evaluate monitor using the jquery function, you will need to use the validate function. The following is a sample program of how you will implement the jquery in your situation; you just need to customize it accordingly:
9$(document).ready(function() {
Â
10Â $("#form1").validate({
Â
11   rules: { 12     name: "required",   // simple rule, converted to {required: true}
Â
13Â Â Â Â Â email: {Â Â Â Â Â Â Â Â Â Â Â Â // compound rule
Â
14Â Â Â Â Â required: true,
Â
15Â Â Â Â Â email: true
Â
16Â Â Â Â Â },
Â
17Â Â Â Â Â url: { 18Â Â Â Â Â Â Â url: true 19Â Â Â Â Â }, 20Â Â Â Â Â comment:
Â
{ 21Â Â Â Â Â Â Â required: true
Â
22Â Â Â Â Â } 23Â Â Â }, 24Â Â Â messages:
Â
{ 25Â Â Â Â Â comment: "Please enter a comment." 26Â Â Â } 27Â }); 28});
Note that the important parameters you will need to know in this case are:
·        the rules, which will allow you to specify the fields you want to validate, and the messages, which will allow you to specify the error message that will be displayed for a particular field in case a wrong entry is typed or entered.
__
Regards
Clair Charles
Â