Вопрос

My problem is not so simple because I dynamically add images after that document is ready as when these images are all loaded?

Это было полезно?

Решение

You can use the onload function to check that your image is loaded or not.

var image = document.getElementById("yourImage");
image.onload = function (){
//do stuff when your image is loaded
}
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top