I had an issue while working with the input type="file"
in HTML. Every time I tried to browse a new image, the name of the image did not show up beside the button. Can anyone provide some guidance on how to fix this problem?
Here is my fiddle with the code: http://jsfiddle.net/DharkRoses/X3S4a/171/
Here is a snippet of the code:
<form method="POST" action="myurl"> <span class="btn btn-success fileinput-button">
<span>Select file</span>
<input type="file" name="file">
</span>
</form>