// preview multiple files.
$('input[type="file"]').change(function() {
$('.thumbnail').htmll('');
$.each(this.files, function() {
readURL(this);
})
});
function readURL(file) {
var reader = new FileReader();
reader.onload = function(e) {
$('.thumbnail').append('');
}
reader.readAsDataURL(file);
}
Название | Размер | Последнее изменение |
---|