Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Why isn't there a fancy file element upload button for twitter bootstrap? it would be sweet if the blue primary button was implemented for the upload button. Is it even possible to finesse the upload button using CSS (seems like a native browser element that cant be manipulated)

share|improve this question
2  
This is a good resource as well. markusslima.github.com/Filestyle-bootstrap Or take it a bit further here: blueimp.github.com/jQuery-File-Upload – Erik Sep 3 '12 at 15:19
@Erik, it's not available ( – Sergey Metlov Oct 29 '12 at 18:26
2  
File style here: markusslima.github.com/bootstrap-filestyle it's case sensitive url – keeg Dec 29 '12 at 3:55

9 Answers

up vote 9 down vote accepted

Upload buttons are a pain to style because it styles the input and not the button.

but you can use this trick:

http://www.quirksmode.org/dom/inputfile.html

share|improve this answer
neat! this is probably the best answer. – jkushner Jun 27 '12 at 22:02

It's included in Jasny's fork of bootstrap.

A simple upload button can be created using

<span class="btn btn-file">Upload<input type="file" /></span>

With the fileupload plugin you can create more advanced widgets. Have a look at http://jasny.github.com/bootstrap/javascript.html#fileupload

share|improve this answer
Does this work ok in IE9? I'm asking because I assume the solution makes use of Javascript, and, at the same time, "the IE doesn’t allow manipulation of the type=”file” input element from javascript due to security reasons." – maprihoda Oct 24 '12 at 15:58
Yes it works in IE9 as well. It sets the opacity of the input element to 0, which luckily works in all browsers :). It's explained in the quirksmode article. – Arnold Daniels Nov 9 '12 at 13:39
1  
it does not work with jQuery 1.9.0, because they dropped $.browser support – Giedrius Jan 17 at 9:30
@Giedrius Please file a bug report at github.com/jasny/bootstrap/issues – Arnold Daniels Jan 18 at 2:03
8  
Looks terrible with regular bootstrap - img688.imageshack.us/img688/948/pictureui.png – cwd Feb 23 at 1:56

Works for me:

Update

jQuery plugin style:

// Based in: http://duckranger.com/2012/06/pretty-file-input-field-in-bootstrap/
// Use:
//     <input class="nice_file_field" type="file" data-label="Choose Document">
//     <script> $(".nice_file_field").niceFileField(); </script>
//
(function( $ ) {
  $.fn.niceFileField = function() {
    this.each(function(index, file_field) {
      file_field = $(file_field);
      var label = file_field.attr("data-label") || "Choose File";

      file_field.css({"display": "none"});
      file_field.after("<div class=\"nice_file_field input-append\"><input class=\"input span4\" type=\"text\"><a class=\"btn\">" + label + "</a></div>");

      var nice_file_field = file_field.next(".nice_file_field");
      console.log("nice_file_field", nice_file_field)
      nice_file_field.find("a").click( function(){ file_field.click() } );
      file_field.change( function(){
        nice_file_field.find("input").val(file_field.val());
      });
    });
  };
})( jQuery );
share|improve this answer

Two great solutions that are tailored for Bootstrap:

share|improve this answer
Do you know, can we use Jasny file upload with Ajax? – Nuri Akman Feb 12 at 15:51
Yes you can but you would need to write your own AJAX handler for handling upload ... – Primoz Rome Feb 12 at 16:18
jQuery File Upload plugin handles everything from uploading and resizing to validating and basically every basic upload need you have. I'm using it right now. – Loolooii May 11 at 12:05

With no additional plugin required, this bootstrap solution works great for me:

demo: http://jsbin.com/ebivoq/1/edit

<div style="position:relative;">
        <a class='btn' href='javascript:;'>
            Choose File...
            <input type="file" style='position:absolute;z-index:2;top:0;left:0;filter: alpha(opacity=0);-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";opacity:0;background-color:transparent;color:transparent;' name="file_source" size="40"  onchange='$("#upload-file-info").html($(this).val());'>
        </a>
        &nbsp;
        <span class='label label-info' id="upload-file-info"></span>
</div>
share|improve this answer

Another option for bootstrap is: http://gregpike.net/demos/bootstrap-file-input/demo.html

If you do not need all the extra features that Jasny offers I would go with this one.

share|improve this answer

this is the best file upload style I like:

<div class="fileupload fileupload-new" data-provides="fileupload">
  <div class="input-append">
    <div class="uneditable-input span3"><i class="icon-file fileupload-exists"></i> <span class="fileupload-preview"></span></div><span class="btn btn-file"><span class="fileupload-new">Select file</span><span class="fileupload-exists">Change</span><input type="file" /></span><a href="#" class="btn fileupload-exists" data-dismiss="fileupload">Remove</a>
  </div>
</div>

you can get demo and more styles at:

http://jasny.github.com/bootstrap/javascript.html#fileupload

but using this, you should replace twitter bootstrap with jasny bootstrap files..

regards.

share|improve this answer

No fancy shiz required:

HTML:

<form method="post" action="/api/admin/image" enctype="multipart/form-data">
    <input type="hidden" name="url" value="<%= boxes[i].url %>" />
    <input class="image-file-chosen" type="text" />
    <br />
    <input class="btn image-file-button" value="Choose Image" />
    <input class="image-file hide" type="file" name="image"/> <!-- Hidden -->
    <br />
    <br />
    <input class="btn" type="submit" name="image" value="Upload" />
    <br />
</form>

JS:

$('.image-file-button').each(function() {
      $(this).off('click').on('click', function() {
           $(this).siblings('.image-file').trigger('click');
      });
});
$('.image-file').each(function() {
      $(this).change(function () {
           $(this).siblings('.image-file-chosen').val(this.files[0].name);
      });
});

CAUTION: The three form elements in question MUST be siblings of each other (.image-file-chosen, .image-file-button, .image-file)

share|improve this answer

This works perfectly for me

<span>
    <input  type="file" 
            style="visibility:hidden; width: 1px;" 
            id='${multipartFilePath}' name='${multipartFilePath}'  
            onchange="$(this).parent().find('span').html($(this).val().replace('C:\\fakepath\\', ''))"  /> <!-- Chrome security returns 'C:\fakepath\'  -->
    <input class="btn btn-primary" type="button" value="Upload File.." onclick="$(this).parent().find('input[type=file]').click();"/> <!-- on button click fire the file click event -->
    &nbsp;
    <span  class="badge badge-important" ></span>
</span>
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.