faqts : Computers : Programming : Languages : JavaScript : Forms : File Upload

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

38 of 68 people (56%) answered Yes
Recently 5 of 10 people (50%) answered Yes

Entry

I need to disable the textbox that comes along with the browse button in <input type=file> tag.

Oct 25th, 2005 05:13
Richard Lee, lak nara,


This isn't a perfect solution as the user can still right mouse click
and paste in text, but to disable keyboard based text input you could do
this...

<input type="file" onkeydown="this.blur();">