To make my weppage as compatible as possible I will go with the regular file input, the problem is that I need to offer multiple uploads.
My thought is that when the
You could have a container div which will harbor the new file input fields and a button to add new inputs:
$('#addFile').click(function() {
// when the add file button is clicked append
// a new
// to a filesContainer div
$('#filesContainer').append(
$('').attr('type', 'file').attr('name', 'someName')
);
});