Tools used for this tutorial
jQuery 3.7.1
Sometimes we need to check if the images have been loaded in order to execute commands related to the images.
$('img').load(function() {
// images loaded successfully
});
Μπορούμε επίσης να ελέγξουμε αν έχει φορτωθεί μια συγκεκριμένη εικόνα χρησιμοποιώντας το αναγνωριστικό ή την κλάση του στοιχείου.
$('#MyImage').load(function() {
// image loaded successfully
});