I want to styling the file upload form with code below:
<form method='POST' enctype='multipart/form-data' action='file.php'>
<fieldset>
<legend>Please choose file</legend>
<input type="file" name="upfile" style="display:none">
<div class="input-append">
<input id="filepath" class="input-large" type="text">
<a class="btn" onclick="javascript:$('input[name=upfile]').click();">Browse</a>
</div>
<div>
<input id="submitBtn" class="btn btn-primary" type="submit" value="Upload">
</div>
</fieldset>
</form>
<script type="text/javascript">
$('input[name=upfile]').change(function(){
$('#filepath').val($(this).val());
});
</script>
It works perfectly on Chorme/Firefox/Safari but IE 10 it just not fire when I click the submit button.
Any ideas or workaround? Please share with me! thanks!