Skip to content

Instantly share code, notes, and snippets.

@slick2
Created June 5, 2015 02:40
Show Gist options
  • Save slick2/59e3b4a35313432fbcd4 to your computer and use it in GitHub Desktop.
Save slick2/59e3b4a35313432fbcd4 to your computer and use it in GitHub Desktop.
refreshCaptcha
function refreshCaptcha()
{
var img = document.images['captchaimg'];
/** this is the wrong code, since the img src of captcha is changed this should changed also **/
img.src = img.src.substring(0, img.src.lastIndexOf("?")) + "?rand=" + Math.random() * 1000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment