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

link|improve this question

40% accept rate
Interesting question, although I don't think there is going to be a workaround. onload and onerror support for images is traditionally very shaky in browsers – Pekka May 31 '11 at 13:29
is there official documentation about onError dependency on server response code? – Lev May 31 '11 at 13:31
1  
@Lev AFAIK, onerror is 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
3  
@Lev generally, in my experience, w3schools is not a good source on deep issues like this one... Anyway, the event is supported in browsers but it's not officially defined in a standard. Therefore, what happens in case of 302 redirects and such might vary from browser to browser. – Pekka May 31 '11 at 13:50
1  
Even though it's firing onError, does it eventually fire an onLoad anyway? (I'm guessing no, from the context, but thought I'd ask to clarify) – jimbojw Jul 6 '11 at 20:47
show 5 more comments
feedback

2 Answers

Is the size of the image that you're redirected to the same size as the image you requested? If not, you can use this to detect an error.

link|improve this answer
feedback

you may want to cache real address after redirects and dynamically update src for next usage

link|improve this answer
how can you do that? there is no handler for response to get a real address. i nave only events – Lev Jul 12 '11 at 10:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.