I have to count image loading time. onLoadHandler is responsible for it.
<img onError="onErrorHandler(this);" onLoad="onLoadHandler(this);" alt="" border='0' width='1' height='1' src='http://exmaple.com/02.jpg'/>
It is works fine if image is normal file with 200 server response.
But partners provide chain of 302 redirects, and onError fires on first redirect. So i never get real loading image time.
Is there some workaround?
Thanks
onloadandonerrorsupport for images is traditionally very shaky in browsers – Pekka May 31 '11 at 13:29onerroris not an official event for images - I know of no good source that defines or explains what it is supposed to do exactly. – Pekka May 31 '11 at 13:36