JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "captcha.js"
Full Path: /var/www/html/ctctaxi/public/assets/vendor_components/jquery-validation-1.17.0/demo/captcha/captcha.js
File size: 547 bytes
MIME-type: text/plain
Charset: utf-8
$(function(){
$("body").on("click", "#refreshimg", function(){
$.post("newsession.php");
$("#captchaimage").load("image_req.php");
return false;
});
$("#captchaform").validate({
rules: {
captcha: {
required: true,
remote: "process.php"
}
},
messages: {
captcha: "Correct captcha is required. Click the captcha to generate a new one"
},
submitHandler: function() {
alert("Correct captcha!");
},
success: function(label) {
label.addClass("valid").text("Valid captcha!")
},
onkeyup: false
});
});