nyteshade

msg:4432859 | 2:54 am on Mar 24, 2012 (gmt 0) |
This is one way, this is my first time using the disabled attribute so you may want to investigate further.
<form> <fieldset> <label for="ena">Enable</label><input type="radio" id="ena" name="ed" value="Enable"/> <label for="dis">Disable</label><input type="radio" id="dis" name="ed" value="Disable"/> </fieldset> <fieldset> <input type="text" id="some" name="something">some</input> <input type="text" id="thing" name="something" disabled="disabled">thing</input> </fieldset> </form>
<script type="text/javascript"> function enable(){ document.getElementById("ena").onclick=function(){ document.getElementById("thing").disabled=false; } }
function disable(){ document.getElementById("dis").onclick=function(){ document.getElementById("thing").disabled=true; } } window.onload = function(){ enable(); disable(); } </script>
|
sobebody

msg:4432866 | 3:17 am on Mar 24, 2012 (gmt 0) |
Hmmm. I got the radio button and both text fields with either choice. I tried putting the <script> between <head></head> but got same result. Thanks though.
|
nyteshade

msg:4432925 | 10:14 am on Mar 24, 2012 (gmt 0) |
wrap the entire reply in the body tags and it will work.
|
|