PluginProbe
RSVP and Event Management / 1.3.0
RSVP and Event Management v1.3.0
trunk 0.5.0 0.6.0 0.7.0 0.8.0 0.9.0 0.9.5 1.0.0 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.5.0 1.6.0 1.6.1 1.6.2 1.6.5 1.7.0 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 All 136 releases
rsvp / jquery-validate / demo / captcha / captcha.js

captcha.js in RSVP and Event Management 1.3.0, at jquery-validate/demo/captcha/captcha.js

28 lines 563 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 $(function(){
2 $("#refreshimg").click(function(){
3 $.post('newsession.php');
4 $("#captchaimage").load('image_req.php');
5 return false;
6 });
7
8 $("#captchaform").validate({
9 rules: {
10 captcha: {
11 required: true,
12 remote: "process.php"
13 }
14 },
15 messages: {
16 captcha: "Correct captcha is required. Click the captcha to generate a new one"
17 },
18 submitHandler: function() {
19 alert("Correct captcha!");
20 },
21 success: function(label) {
22 label.addClass("valid").text("Valid captcha!")
23 },
24 onkeyup: false
25 });
26
27 });
28