I am using this code for to call function after the images are loaded
var height = 0;
$("#right-layout-ul li img").on("load",function(){
function_function();
});
If i am refreshing the page the function does not call because the images are already loaded…
Is there any way to find the status of the image like loaded or loading ?
I want to call a function after the image loaded,if the images are loaded also call the function…
how to implement ??? please help me
1 Answer