file upload - FineUploader: can I use addFiles() from the JQuery wrapper? -
i'd add second upload button exclusively invokes camera on ios device.
per recent blog post understand can done using addfiles()
method. project using jquery version of fineuploader.
can access addfiles()
jquery version or should switch vanilla js version?
you can access api methods when using jquery plug-in. using addfiles
example:
$('#myuploader').fineuploader('addfiles', filesorinputs);
filesorinputs
can file
, <input type="file">
or array (or array-like structure) of either.
see "using jquery plug-in" readme or more details.
Comments
Post a Comment