Skip to content

Instantly share code, notes, and snippets.

View AzizanNur's full-sized avatar
💭
Alhamdulillah....

Azizan Nur Rohman AzizanNur

💭
Alhamdulillah....
View GitHub Profile
@sandhikagalih
sandhikagalih / script.js
Created June 13, 2024 15:05
Javascript Image Preview
const input = document.getElementById('avatar');
const previewPhoto = () => {
const file = input.files;
if (file) {
const fileReader = new FileReader();
const preview = document.getElementById('avatar-preview');
fileReader.onload = function(event) {
preview.setAttribute('src', event.target.result);
}
fileReader.readAsDataURL(file[0]);