ans-zz-ys / kaptcha

Automatically exported from code.google.com/p/kaptcha
Other
0 stars 0 forks source link

Wrong description in Extra column in Wiki How to Use #38

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
thx.

Original comment by latch...@gmail.com on 17 Feb 2009 at 12:55

GoogleCodeExporter commented 9 years ago

Original comment by latch...@gmail.com on 17 Feb 2009 at 12:57