Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am wondering how to hide the text field portion of a standard html file upload tag

for example

<input type="file" name="somename" size="chars"> 

This generates obviously a text field and next to that field is a browse button... I want to hide the text field part but keep the button.

share|improve this question

5 Answers

up vote 15 down vote accepted

I'd recommend hiding the whole thing and putting a separate button object which, when clicked, will end up clicking the input's browse button.

You can do this with CSS and javascript -- check out this article (actually the second time I've used this reference today).

share|improve this answer
Thanks this is exactly what I was looking for. – dswatik Jan 9 '10 at 21:41
1  
This doesn't appear to work in IE. IE outputs an error once the upload is started. – Raj May 2 '12 at 20:54

The file input button is extremely difficult to style and manipulate, mainly for security reasons.

If you really need to customize your upload button, I recommend a Flash based uploader like SWFUpload or Uploadify that enables you to use a custom image as button, display a progress bar, and other things.

However, its basic philosophy differs from just embedding a control into a form. The uploading process takes place separately. Make sure you check out first whether this works for you.

share|improve this answer
Thanks, but unfortunatly I am locked into the way my client designed the site.. which is a simple image button to bring up the file dialog. – dswatik Jan 9 '10 at 21:43
This could be done quite reliably using a Flash uploader. But if Shaun Inman's article works and degrades gracefully, that should do nicely. – Pekka 웃 Jan 9 '10 at 22:06

You can put an image as a background for the button. That worked for me, a while ago.

share|improve this answer

This will surely work i have used it in my projects.I hope this helps :)

<input type="file" id="selectedFile" style="display: none;" />
<input type="button" value="Browse..." onclick="document.getElementById('selectedFile').click();" />
share|improve this answer
Great just what I needed ;) – Leroy Meijer May 17 at 10:28
input[type="file"] { outline: none; cursor: pointer; position: absolute; top:0; clip: rect(0 265px 22px 155px);  } /* Hide input field */
@-moz-document url-prefix()
  {
  input[type="file"] { clip: rect(0, 265px, 22px, 125px);  } /* Mozilla */
  }
* > /**/ input[type="file"], x:-webkit-any-link { clip: rect(0, 86px, 22px, 0); } /* Webkit */

This will do the same without JavaScript, but requires absolute positioning to use the clip property.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.