JSFiddle - React, Tailwind, and code Playground

by lollero

HTML

<input type="file">

CSS

input,
img,
div {
  float: left;
  clear: both;
  margin: 15px;
  white-space: pre;
}

JavaScript

$("input").change(function() {
    
    var file = this.files[0];
    
    console.log( this );
    
    
});