Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
$("#avatar").on("change", function() { const file = this.files[0]; if (!file || !file.type.startsWith("image/")) return; const reader = new FileReader(); reader.onload = function(e) { $("#preview").attr("src", e.target.result).removeClass("d-none"); }; reader.readAsDataURL(file); });
Result
Open