Skip to content

lucentminds/browser-input-file-list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

browser-input-file-list

Library for handling files selected in the browser on a web page form.

Example Useage:

var field = document.getElementById( 'fileInputField' );
field.addEventListener( 'change', function( event ){
   // Create a file input list from the element's change event.
   var aList = InputFileList.createFromEvent( event );

   console.log( aList );

   aList.post({
      url: '/test_upload.php',
      params: {
         a: 1,
         b: 2,
         c: 3
      }
   });
});

About

Library for handling files selected in the browser on a web page form.

Resources

License

Stars

0 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors