cifar-10-fastapi / static /js /script.js
avidaldo's picture
Autocommit
22a1b5b
Raw
History Blame Contribute Delete
345 Bytes
/**
* Function to preview the selected image before uploading
*/
function previewImage(event) {
const preview = document.getElementById('image-preview');
const previewContainer = document.getElementById('preview-container');
preview.src = URL.createObjectURL(event.target.files[0]);
previewContainer.style.display = 'block';
}