"File Upload Preview"
Bootstrap 4.0.0 Snippet by akshayptdr4

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <input type='file' onchange="readURL(this);" /> </div> <img id="blah" src="http://placehold.it/180" alt="your image" /> </div>
img{ max-width:100px; height:100px; margin-top:20px; } input{ margin-top:20px; }
function readURL(input) { if (input.files && input.files[0]) { var reader = new FileReader(); reader.onload = function (e) { $('#blah') .attr('src', e.target.result); }; reader.readAsDataURL(input.files[0]); } }

Related: See More


Questions / Comments:

Its Working

akshayptdr4 (1) - 6 years ago - Reply 0


how can i get file path of image from input?

prantabiswas () - 5 years ago - Reply 0


It is given in img tag.

akshayptdr4 (1) - 5 years ago - Reply 0