pouncer Posted November 13, 2006 Share Posted November 13, 2006 how can i disable a text field. im using dreamweaver, cant see any option to do it Link to comment https://forums.phpfreaks.com/topic/27092-how-to-disable-a-text-field/ Share on other sites More sharing options...
joshi_v Posted November 13, 2006 Share Posted November 13, 2006 To just make it as readonly..<input type="text" name="name" value="this is readonly" readonly>So that no one can't write in to that text box.If you want to disbale that text box , you should use JavaScript.ocument.formname.textfieldname.disable.true; It will disable the text field.RegardsJoshi. Link to comment https://forums.phpfreaks.com/topic/27092-how-to-disable-a-text-field/#findComment-123877 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.