LyndonOHRC
Programmer
I've tried onfocus/onblur and the mocvueover seen below; I've also tried using getelementbyid to set disabled back to false, but nothing seems to remove the disabled property. It seems to me like the onfocus and the onmouseout never fires once the input is disabled.
Can this be accomplished?
Any help appreciated.
Lyndon
Lyndon
Can this be accomplished?
Any help appreciated.
Lyndon
Code:
Year: <input size="5" type="text" name="OrderYear" id="OrderYear" onmouseover="this.disabled=true;" value="2018" onmouseout="this.disabled=false;">
Track: <input size="10" type="text" name="OrderTrack" id="OrderTrack" onmouseover="this.disabled=true;" value="RP" onmouseout="this.disabled=false;">
Order Number: <input size="10" type="text" name="OrderNumber" id="OrderNumber" onmouseover="this.disabled=true;" value="001" onmouseout="this.disabled=false;">
Lyndon