Form / File Upload

FilePond

How To Use

Basic Use HTML
<input class="file-pond" type="file" multiple >
Js Activation
FilePond.registerPlugin(FilePondPluginImageExifOrientation, FilePondPluginImagePreview);
const inputElement = document.querySelector('.file-pond');
const pond = FilePond.create( inputElement, {
    imagePreviewHeight: 140,
});

For more Information please follow the Official Documentation

Dropify

Default Uploader
Preloaded File
Custom Height
Disabled

How To Use

Basic Use HTML
<input class="dropify" type="file" >
Js Activation
$('.dropify').dropify();

For more Information please follow the Official Documentation