Preview an image before Upload using jQuery Example
Hello,
This tutorial will give you an example of preview image input type file jquery. I explained simply step by step javascript display preview images before upload. This article will give you a simple example of preview image before upload jquery. If you have a question about preview image before upload using jquery then I will give a simple example with a solution.
Sometimes we need to show preview of image before image upload. I mean when user will select new image from input="file" then it will display preview of image. In this example you can see before upload it will display preview using jquery.
Example:
<html lang="en">
<head>
<title>Change image on select new image from file input</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
</head>
<body>
<input type="file" name="file" id="profile-img">
<img src="" id="profile-img-tag" width="200px" />
<script type="text/javascript">
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#profile-img-tag').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$("#profile-img").change(function(){
readURL(this);
});
</script>
</body>
</html>
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel JQuery Ajax Loading Spinner Example
- How to Remove Special Characters from a String in JQuery?
- JQuery Disable Right Click, Cut, Copy and Paste Example
- JQuery Reload Page After 5 Seconds Example
- PHP MySQL Integrate Fullcalendar Example Tutorial
- How to Remove Comma from String in JQuery?
- How to Add CKEditor Required Field Validation in JQuery?
- How to Remove All Whitespace from String in JQuery?
- JQuery Select Box with Search Option using Chosen Plugin
- How to Get Attribute Value in JQuery?
- How to Check Undefined, Empty and Null in JQuery?
- How to Convert Line Breaks to br in jQuery ?
- How to Check Object is Empty or Not in JQuery?