Hello, I am trying to get a text box to appear when a radio button is checked. Then dissapear when another radio button is checked. Is this possible at all? Thank you
try this, it will help you hopefully... <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1255 "> <script type="text/javascript"> function michal(x) { var checky=document.getElementById(x); if (checky.checked) { idan.comments1.style.display="none"; } else { idan.comments1.style.display="block"; } } </script> </head> <body> <form id="idan"> <input type="checkbox" id="check1" onclick="michal('check1')" checked /><textarea id="comments1" cols="30" rows="7">I think that</textarea> <br> </form> </body> </html>