When MSIE tries to load an image that's not there it seems to go on for ever trying to load it. I have a php script that interacts with javascript:
<img src='whatever' onError='myFunction()'>
but as MSIE never stops trying to load a missing image I never get to the onError bit unless I click the red circle with the white cross in (stop). So what I want to know is, is there a way for php to do the same thing as the circle ie. stop the page from loading after 30 seconds for example?
Thanks in advance for any help!
<img src='whatever' onError='myFunction()'>
but as MSIE never stops trying to load a missing image I never get to the onError bit unless I click the red circle with the white cross in (stop). So what I want to know is, is there a way for php to do the same thing as the circle ie. stop the page from loading after 30 seconds for example?
Thanks in advance for any help!