You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
505 B

//$Id$
function generateCaptcha() {
jQuery('#captchaImg').attr('src', 'img/spinner.gif').show();
jQuery('body').css('cursor', 'progress');
jQuery.ajax({
url: 'antibot.php',
dataType: 'json',
success: function(data) {
jQuery('#captchaImg').attr('src', data.captchaImgPath);
jQuery('#captchaId').attr('value', data.captchaId);
jQuery('body').css('cursor', 'auto');
}
});
$("#antibotcode").focus();
return false;
}