Debt Consolidation - Debt Consolidation - Debt Consolidation - Web Directory - Debt Consolidation

PDA

View Full Version : How to make button readonly?


lost
Oct 31st 2005, 12:16 pm
I need to make a button readonly or not clickable...i was informed on the following but it only works for textfields not buttons. Anyone??
echo '<INPUT TYPE=button VALUE="Modify" READONLY="readonly" NAME="modifybutton" />';

imaginemn
Oct 31st 2005, 12:23 pm
Try using the following:

<INPUT TYPE=button VALUE="Modify" disabled="disabled" NAME="modifybutton" />

lost
Nov 1st 2005, 4:23 am
Thank you!