Posts

Showing posts with the label input type file upload code

How to upload multiple files & preview using jQuery

Image
How to upload multiple files & preview using  jQuery in the code we are uploading more than one file with using js to fully dynamic multipal file upload and also see the previous images.  HTML  <input type="file" id="filesss" multiple="" /> <div id="dragimgappend"></div> More information please visit this url  https://www.papawebdesigner.com/  CSS  <style type="text/css"> .documentUploadS img {     width: 140px; } .documentUploadS {     position: relative; } span.selFile {     cursor: pointer;     font-weight: 500;     position: absolute;     right: 0;     z-index: 99999999;     top: 0;     background: red;     color: #fff;     width: 20px;     text-align: center; } div#dragimgappend > div {     display: inline-block;     margin-right: 8px;...