how to show multiple image preview in jquery
function previewImages() {
var preview = document.querySelector('#preview');
if (this.files) {
[].forEach.call(this.files, readAndPreview);
}
function readAndPreview(file) {
// Make sure `file.name` matches our extensions criteria
if (!/\.(jpe?g|png|gif)$/i.test(file.name)) {
return alert(file.name + " is not an image");
} // else...
var reader = new FileReader();
reader.addEventListener("load", function() {
var image = new Image();
image.height = 100;
image.title = file.name;
image.src = this.result;
preview.appendChild(image);
});
reader.readAsDataURL(file);
}
}
document.querySelector('#file-input').addEventListener("change", previewImages);<input id="file-input" type="file" multiple>
<div id="preview"></div>
Also in JavaScript:
- chrome extension get current tab url
- underscore js join
- 'exceptionRenderer' => '\CrudJsonApi\Error\JsonApiExceptionRenderer',
- how to made disktop program on react website
- react scrolling a div by dragging the mouse?
- how to wait for a function to finish in javascript
- close exit app react native
- jquery cheat sheet
- o que é jsonm
- nodejs aws s3 bucket delete item
- nativescript absolutelayout bottom
- type of javascript
- if typeof equals array javascript
- angular x social login
- reacts mos twanted
- variables 2 python .Bartolome sintes Marco
- check if palindrome
- js mouse enter
- Caesars Cipher javascript
- compare strings js
- choropleth map of india which shows current date confirmed cases in every state json api python.
- loop through object js
- how to wait for an exec command to fininsh in nodejs
- install javascript kali linux