The “disabled” attribute on an HTML form element prevents the field from being edited. Unfortunately, it also prevents the field from being submitted in the form. If you do need to submit the field even though it’s disabled, use the following instead of the disabled attribute:
this.event.addListener( field, “click”, function(e){var targ;if (e.target) targ = e.target;else if (e.srcElement) targ = e.srcElement;if (targ.nodeType == 3) // defeat Safari bugtarg = targ.parentNode;targ.blur();});YAHOO.util.Event.addListener( field, “click”, function(e)
{
var targ;
if (e.target) targ = e.target;
else if (e.srcElement) targ = e.srcElement;
if (targ.nodeType == 3) // defeat Safari bug
targ = targ.parentNode;
targ.blur();
});
This will blur (deselect) the field as soon as you select it. Combine it with some gray styling and you’ve got a great form disabler.
Posted by Josh Justice