Is it possible to use uploadify to allow any user to select a file from the file dialogue and insert it into the file input element of a form? I only need to use uploadify as a way to style the "upload button" as an image.

I have tried other approaches here, here and here. All are not compatible with all browsers.

What else can I use / do to have my file input element as an image?

I would like to have my file input button to look consistent in all browsers.

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

I can't remember the source of the technique but this seems to be cross-browser. Tested in:

  • Google Chrome 9
  • FireFox 3.6
  • Internet Explorer 6-9
  • Opera 10
  • Safari for Windows

Here is the complete code:

HTML:


<div>
    <button><!-- this is skinnable -->Pick a file ...</button>
    <input type="file" />
</div>

CSS:


div
{
    position:relative;
    width: 100px;
    height: 30px;
    overflow:hidden;
}

div button
{
    position: absolute;
    width: 100%;
    height: 100%;
}

div input
{
    font: 500px monospace; /* make the input's button HUGE */
    opacity:0; /* this will make it transparent */
    filter: alpha(opacity=0); /* transparency for Internet Explorer */
    position: absolute;  /* making it absolute with z-index:1 will place it on top of the button */
    z-index: 1;
    top:0;
    right:0;
    padding:0;
    margin: 0;
}

The idea is to make the transparent and place it on top of some skinnable content (a in this case). When the end user clicks the button she will actually click the .

link|improve this answer
Hmmm very clean solution. Seems to work among the aforementioned browsers. Will test this further, but so far looking good. Thanks for that Atanas. Appreciate it – Christian Fazzini Mar 4 '11 at 9:53
Used this before and it works pretty well. You can also use an onchange event on the input[file] to read the file path and display it back to the user in the UI. I used this for the compressor mentioned here – johnhunter Mar 4 '11 at 10:15
1  
As a reference, I found a few sources online in relevance to the solution mentioned above: quirksmode.org/dom/inputfile.html and hiox.org/30547-css-style-input-typefile-tags.php for anyone who wants to do further reading – Christian Fazzini Mar 4 '11 at 10:41
feedback

Your best bet in that case would be to use a flash uploader. This would introduce a complete separate control and would have no dependency on the browser. There are plenty of them on the net. Here's one : http://swfupload.org/

link|improve this answer
JohnP, I have listed a few on my initial post that are like swfupload. The problem is still the same, as explained with the uploadify method. – Christian Fazzini Mar 4 '11 at 8:50
The link I posted actually uses Flash and has JS as a fallback only. Flash will look consistent on all browsers. Have a look – JohnP Mar 4 '11 at 8:56
Im not looking to submit the form via Ajax though. You are right in the sense that Flash will make the file input look consistent. But Flash submits in its own way via Ajax – Christian Fazzini Mar 4 '11 at 9:03
Yeah this uses asynchronous file uploads – JohnP Mar 4 '11 at 9:16
feedback

If it's only the upload button you want to style, why can't you use CSS? That should work across all browsers.

If you put your code on jsFiddle, I can tell you more about what you can do.

link|improve this answer
Hi Picardo, in theory, I'd like to use an image instead of the native file input element that is shown in all browsers. I believe CSS alone can't remove the text box that comes with the file input element – Christian Fazzini Mar 4 '11 at 8:52
Which browsers are you having trouble with? You can use one of the options you cited and find a work around for the non-supporting browser. – picardo Mar 4 '11 at 8:57
Haven't tested on IE. But appelsiini.net/projects/filestyle works on FF, Chrome, Safari. It doesn't work at all with Opera – Christian Fazzini Mar 4 '11 at 9:01
All browsers place severe constraints on how input[file] elements can be styled. In addition the button and field are treated as one element so there is no way to style the button. Hence the invisible element workaround. – johnhunter Mar 4 '11 at 10:21
feedback

Your Answer

 
or
required, but never shown

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