What steps will reproduce the problem?
1. http://code.google.com/p/kaptcha/wiki/HowToUse
2. Under Extra column
3. jQuery code
What is the expected output? What do you see instead?
$('#kaptchaImage').click(function () { $(this).attr('src', '/Kaptcha.jpg?
' + Math.floor(Math.random()*100) ); })
Instead,
$('#kaptchaImage').click(function () { $(this).attr('src', '/kaptcha?' +
Math.floor(Math.random()*100) ); })
What version of the product are you using? On what operating system?
Google code Kaptcha
Please provide any additional information below.
Extra effect on refreshing the image, you can fadeIn when click on it.
$('#kaptchaImage').click(function () {
$(this)
.hide()
.attr('src', '/Kaptcha.jpg?' + Math.floor(Math.random()*100) )
.fadeIn();
})
Original issue reported on code.google.com by hudzai...@gmail.com on 17 Feb 2009 at 12:46
Original issue reported on code.google.com by
hudzai...@gmail.com
on 17 Feb 2009 at 12:46