I am able to select multiple files using the multiple property on file input tag. however i am wondering how to delete a single element.
I know that you can't manipulate the file input on its own because its a security hole and that browsers do not allow that, but i would like to point you to the jquery upload plugin : https://github.com/blueimp/jQuery-File-Upload.
This plugin allows you to remove individual elements, there is no flash there. all is javascript and the html5 api!
oh and i am aware of uploadify, i just want to stay with pure js and html file api.