0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
captcha
/
[
Home
]
File: captchalib.js
//$Id: captchalib.js 42629 2012-08-21 10:36:35Z lphuberdeau $ 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; }