in my html
if i change type to text it's fine but when i change it type file nothing happen when i click
<input type="file" name="pic[]" accept="image/*" >a
<input type="file" name="pic[]" accept="image/*" id="u_f">b<br>
<button type="button" class="btn btn-info" id="btn1">
<span class="glyphicon glyphicon-plus"></span>
</button>
Here is my jquery
$(document).ready(function(){
$("#btn1").click(function(){
$("#u_f").append(" <input type='file' name='pic' accept='image/*' id='u_f' />b<br>.");
// alert('hi');
});