Hello, I have a main page, that within it, contains an iframe name="ggg". On the main page, i have: <iframe name=ggg height=40px align=right width=90px frameborder=0 marginwidth=0 marginheight=0 scrolling=no src="aspcaptcha.asp"></iframe> <a class="info" href="javascript:location.reload(true)"> new image</a> Code (markup): I can't seem to find how i can make that reload script actually reload the ifram only any help is appreciated. Thanks.
answered my own question... in the head section... <script type="text/javascript"> function Reload () { var f = document.getElementById('captcha'); f.src = f.src; } </script> Code (markup): then the code... <iframe id="captcha" height=40px align=right width=90px frameborder=0 marginwidth=0 marginheight=0 scrolling=no src="aspcaptcha.asp"></iframe> <a class="info" href="javascript:Reload()"> Code (markup):