Bootstrap 4 Multiple File Upload With Preview Code Example


Example 1: bootstrap 4 multiple file upload

< input type="file" name="img" multiple >

Example 2: bootstrap multiple image upload with preview

<div class="file-loading">     <input id="input-b6" name="input-b6[]" type="file" multiple></div><script>$(document).ready(function() {    $("#input-b6").fileinput({        showUpload: false,        dropZoneEnabled: false,        maxFileCount: 10,        mainClass: "input-group-lg"    });});</script>

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?