JS display image preview on the form before submit
<input type="file" onchange="previewFile()"><br>
<img src="" height="200" alt="Image preview...">
<script>
function previewFile() {
  var preview = document.querySelector('img');
  var file    = document.querySelector('input[type=file]').files[0];
  var reader  = new FileReader();
  reader.onloadend = function () {
    preview.src = reader.result;
  }
  if (file) {
    reader.readAsDataURL(file);
  } else {
    preview.src = "";
  }
}
</script>
  
 
 
18 Related pages
- Date and Time JavaScript
 - Display Date, JavaScripts
 - Display Date, JS
 - External JavaScripts in HTML head
 - JavaScript confirm OK and Cancel
 - JavaScript Promise API
 - JavaScript redirect to
 - JavaScript toggle class
 - JS alert in php
 - JS Blinking Text
 - JS Date
 - JS display image preview on the form before submit
 - JS image inside ul li
 - JS Numeric Sort
 - JS prevent form resubmission
 - JS, pop( ) remove last element in the array
 - JS, push() adds to the last element in the array
 - Timeout JS
 























