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
if you want to have diffrent input names
var i; $('#addFile').click(function() { i=i+1; $('#filesContainer').append( $('').attr('type', 'file').attr('name', 'file'+i) ); });