I have this code currently:
HTML:
<div class="row upload">
<form enctype="multipart/form-data" action="" method="post" class="col-md-12">
<label for="file" class="filebutton">No file has been selected</label>
<input style="opacity:0" type="file" name="file" id="file" />
</form>
</div><!--End of row upload-->
CSS:
label {
background-color: #eeeeee;
width: 500px;
height:50px;
font-weight: normal;
color: #777777;
padding:20px;
margin-top: 10px;
}
As you can see, when file is chosen, the placeholder still remains the same. I want placeholder to be file directory when file is chosen.
FIDDLE: http://jsfiddle.net/7rtJ5/