How to preview image before uploading in jQuery
Created at 05-Jul-2021 ,
By samar
How to preview image before uploading in jQuery
We will use programming in this lesson to attempt to solve the "How to preview image before uploading in jQuery".
You can preview images before uploading them in jQuery. You have to get the image URL (BLOB URL or Base64 format) from the input file and append it to the targeted image.-
Preview image in BLOB URL format on change input type file
<!-- Image Preview on choose file in BLOB url format --> <input type="file" name="image" id="image"/> <div id="previewWrapper" style="height:200px; width:300px;"> <img id="previewImage" style="height:100%; width:100%;"> </div> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script> $(document).ready(function(){ $("body").on("change", "#image", function(e){ previewImage(this, 'previewImage'); }); }) function previewImage(input, targetDivToShow) { var files = input.files; var url; var done = function (url) { $('#'+targetDivToShow).attr('src', url); }; if (input.files && input.files[0]) { file = input.files[0]; if (URL) { done(URL.createObjectURL(file)); } else if (FileReader) { var reader = new FileReader(); reader.onload = function (e) { done(reader.result); } reader.readAsDataURL(file); } } } </script>
-
Display image in base64 format on change input file
<!-- Preview image in base64 formats --> <input type="file" name="image" id="image"/> <div class="previewWrapper" style="height:200px; width:300px;"> <img id="previewImage" style="height:100%; width:100%;"> </div> <!-- Script --> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script> $(document).ready(function(){ $("body").on("change", "#image", function(e){ var file = e.target.files[0]; var mediabase64data; getBase64(file).then( mediabase64data => $('#previewImage').attr('src', mediabase64data) ); }); }) function getBase64(file) { return new Promise((resolve, reject) => { const reader = new FileReader(); reader.readAsDataURL(file); reader.onload = () => resolve(reader.result); reader.onerror = error => reject(error); }); } </script>
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Jquery
- Uncaught TypeError: $.ajaxSetup is not a function
- How to check object is empty or not in jQuery
- Enable click event on appended element using jQuery
- Execute function after Ajax call is complete
- How to find closest upper element and append html to below it in jquery
- Mixed Content: The page at 'https://w3codegenerator.com/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint
- JQuery find text and show as bold in html page
- JQuery append html to below the target element
- How to remove Choose File button in jquery
- Uncaught TypeError: $.ajax is not a function
- (index):128 Uncaught TypeError: MobileNumberVal.test is not a function
- Show loading icon on click submit button in jQuery
- Validate form using jQuery
- How to pass javascript variable to laravel route on ajax call
- Preview image in BLOB URL format on choose file in jQuery
- How to get closest form input value in jQuery
- Ajax done fail ajaxcomplete in not a function
- Get the href link on click anchor in javascript
- How to create read more in jquery
- Jquery-3.6.0.min.js CDN link
- Ajax for multiple form
- How to check ajax request is completed in jQuery
- Append method to add text to body not working
- Jquery.validate.min.js:4 Uncaught TypeError: Cannot read properties of undefined (reading 'mode')
- How to reset form input element on click