Originally posted @ https://codeanddeploy.com visit and download the sample code:
https://codeanddeploy.com/blog/jquery/how-to-check-if-image-is-loaded-or-not-in-jquery
In this post, I will show you an example of how to check if the image is successfully loaded using jquery. If you need to check if the image is loaded on page load then this post is for you. Sometimes we need to check and display to the user if a specific image element was loaded successfully.
Here is the code example:
<script type="text/javascript">
$('.your_image_class')
.load(function(){
console.log("Image loaded succesfully!");
})
.error(function(){
console.log("Error occurred when loading image.");
});
</script>
I hope this tutorial can help you. Kindly visit here https://codeanddeploy.com/blog/jquery/how-to-check-if-image-is-loaded-or-not-in-jquery if you want to download this code.
Happy coding :)
Top comments (0)