I'm facing a major problem. When I'm changing the image of my captcha on clicking the link "Not readable? Change text." then in this case only IE8 not changing the image while other browser supports it. If any one knows its reason then plz let me know. My coding is below. Thanks
<div id="captcha1">
<img src="captcha.php" id="captcha" />
<br/>
<a href="#" onclick="
document.getElementById('captcha').src='captcha.php?'+Math.random();
document.getElementById('captcha-form').focus();"
id="change-image">Not readable? Change text.</a>
</div>