<div class="profile-upload">
<div class="image-container">
<img src="https://placehold.co/150x150/e5e7eb/a3a3a3?text=No+Image" id="previewImg" alt="Profile">
<label for="fileInput" class="edit-btn">✎</label>
</div>
<input type="file" id="fileInput" accept="image/*" hidden>
<p>Click the pencil to upload</p>
</div>
Back to Snippets
Profile Image Upload Preview JS
Allow users to preview their avatar before uploading it. This snippet handles the file selection event and instantly updates the image source, which provides immediate visual confirmation.
463