Показать сообщение отдельно
  #1 (permalink)  
Старый 14.12.2011, 16:28
Новичок на форуме
Отправить личное сообщение для rotten Посмотреть профиль Найти все сообщения от rotten
 
Регистрация: 14.12.2011
Сообщений: 9

битые ссылки на картинки
есть код который по идее должен отлавливать битые ссылки на картинки и заменять на empty.gif
<script type="text/javascript">
// обработчик битых ссылок

$('img').error(function(){
    $(this).attr('src', 'empty.gif');
});
</script>

но он почему-то не заменяет. весь уже запутался, не знаю что происходит.

лог:
Код:
Unsafe JavaScript attempt to access frame with URL chrome-extension://hgimnogjllphhhkhlmebbmlgjoejdpjl/bar.html from frame with URL http://mysite/. Domains, protocols and ports must match.
http://i.rozetka.com.ua/data/products/sml/img09259.jpgFailed to load resource: the server responded with a status of 404 (Not Found)
http://i.rozetka.com.ua/data/products/sml/img18383.jpgFailed to load resource: the server responded with a status of 404 (Not Found)
http://i.rozetka.com.ua/data/products/sml/img07902.jpgFailed to load resource: the server responded with a status of 404 (Not Found)
http://i.rozetka.com.ua/data/products/sml/img11128.jpgFailed to load resource: the server responded with a status of 404 (Not Found)
http://i.rozetka.com.ua/data/products/sml/img10980.jpgFailed to load resource: the server responded with a status of 404 (Not Found)
Ответить с цитированием