Ok..this should be pretty straightforward:
<input type="button" name="test" id="test" value="roll over me"
onmouseover="this.disabled=true;" onmouseout="this.disabled=false;">
if i mouseover this button, it gets disabled..yay! But now when I mouseout, it doesn't get enabled...boo.
I understand the concept of disabling it means you can't do anything with it. But, how do you get it to be enabled with a mouseout? Is it possible? Am I having a brainfart and am missing something? this should be quite easy.
Thanks!