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>
Use This CSS
Use This HTML