Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 786 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 786 Bytes

AjaxFileUpload

This is a fork version of http://www.phpletter.com/Our-Projects/AjaxFileUpload/

Improvement and Fix

  1. Add arguments support
    You can now use data to send addictional arguments, Example:

    $.ajaxFileUpload(
    {
        url: '/',
        secureuri: false,
        data: {                    
            'name': 'carlcarl',
        },
        ...
        ...
    }
  2. Fix mimetype problem
    If you add mimetype in your json response, it will add addictional tags '<pre></pre>' to your ajax response, which will cause error in original code.
    So I fix this.

License

This package is MIT licensed and freely available.

Feel free to improve this package and send a pull request to GitHub.