I have a bunch of input elements which are DISABLED="true" .
Based on certain actions I want to enable them using javascript.
It would be simple to just do this by accessing their names directly, unfortunately this page is a bit more complex. I have it split into DIVs and am making copious usage of style.display=" none"....Also some of the names are common.
Only the element ID's are definetly unique.
What I am (basically) trying to do is simply:
But the silly element is still disabled.
I am sure the function is firing and the correct value is being passed on down.
It would appear I am not using tbl_type_h correctly.
Thanks to you who can get me back on track!!!!!
Based on certain actions I want to enable them using javascript.
It would be simple to just do this by accessing their names directly, unfortunately this page is a bit more complex. I have it split into DIVs and am making copious usage of style.display=" none"....Also some of the names are common.
Only the element ID's are definetly unique.
What I am (basically) trying to do is simply:
Code:
var tbl_type_h = document.getElementById("tbl_type_h"); tbl_type_h.disabled="false";
I am sure the function is firing and the correct value is being passed on down.
It would appear I am not using tbl_type_h correctly.
Thanks to you who can get me back on track!!!!!
Comment