Thursday, May 16, 2024
HomejQuerySmall Customized Drag'n'drop File Add Plugin For jQuery

Small Customized Drag’n’drop File Add Plugin For jQuery


One more customized file add jQuery plugin that makes it simple so as to add drag and drop file importing to your net software. For those who’re seeking to improve your file inputs, this plugin is a superb open-source alternative. 

As soon as you’ve got chosen recordsdata, the plugin shows a useful file information desk under the drag’n’drop space. You’re going to get a complete overview, together with previews, file sizes, and kinds, all at a look. And for these moments while you change your thoughts about an add? No downside. You’ll be able to delete any chosen file immediately from the desk.

Find out how to use it:

1. Load the wanted jQuery library and Materials Icons within the doc.


<!-- Materials Icons -->
<hyperlink rel="stylesheet" href="https://fonts.googleapis.com/css?household=Materials+Icons+Outlined">

<!-- jQuery Library -->
<script src="/path/to/cdn/jquery.min.js"></script>

2. Obtain the plugin and place the fileUpload.js script after jQuery.


<script src="fileUpload/fileUpload.js"></script>

3. Do not forget to import the core stylesheet.


<hyperlink rel="stylesheet" href="fileUpload/fileUpload.css">

4. Create an empty DIV container to carry the customized file uploader.


<div id="fileUpload"></div>

5. Name the perform fileUpload on the DIV container you simply created and the plugin will do the remainder.


$(perform(){ 
  $("#fileUpload").fileUpload();
});

6. The generated HTML construction must be like these:


<div id="fileUpload" class="file-container">
  <label for="fileUpload-1" class="file-upload">
    <div>
      <i class="material-icons-outlined">cloud_upload</i>
      <p>Drag &amp; Drop Information Right here</p>
      <span>OR</span>
      <div>Browse Information</div>
    </div>
    <enter sort="file" id="fileUpload-1" identify="[]" a number of="" hidden="">
  </label>
</div>

This superior jQuery plugin is developed by kaderbrl. For extra Superior Usages, please verify the demo web page or go to the official web site.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments