I have an image, when the image is loaded, I want to take an action, for example alert.Im using the eventListener method to implement it. here is my code
imageView.addEventListener('load', function()
{
alert(1);
});
this work works fine with iphone, but doesn’t fire anything with Android, how can this be achieved in android? Many thanks.
Grace source
share