How do I create a file upload anchor tag link?

4.5k Views Asked by At

Below code is working almost correctly but it always displays the "choose file" button. I need the choose file button to not display and all that's left is a link that is a file uploader.

How do I create a file upload anchor tag link properly?

This is using bootstrap-filestyle.

$(function(){
  $("#upload_link").on('click', function(e){
  e.preventDefault();
  $("#upload:hidden").trigger('click');
  });
});

#upload_link{text-decoration:none;}
#upload{display:none}

<input id="upload" type="file"/>
<a href="" id="upload_link">Upload your photo</a>
1

There are 1 best solutions below

3
On

Use This CSS

    .btn-file {
    display: block;
    height: 20px;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    width: 120px;
}


.btn-file > input {
    cursor: pointer;
    direction: ltr;
    font-size: 23px;
    margin: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-300px, 0px) scale(4);
}

input[type="file"] {
    display: block;
}

Use This HTML

<span class="btn default btn-file">
                                <span class="fileinput-new">
                                    Select Document
                                </span>
                                <input type="file" class="textbox wp95 fl fileupload fileInput" name="files" id="fileupload">
                            </span>