Добрый день!
Скрипт увеличивает картинки в блоках по наведению мыши, а также выводит alt-текст в отдельном абзаце. Работает во всех браузерах кроме IE.
Ошибка - "Предполагается наличие идентификатора, строки или числа"
<script type="text/javascript">
$(function(){
$('.zoom1').hover(function(){
$(this).children('img').stop(true,true)
.animate({width:"60px",height:"130px",left:"-4px",top:"-8px",}, 200);
var title = $(this).children('img').attr("alt");
$('.desc').text(title);
},
function(){
$(this).children('img').stop(true,true)
.animate({width:"52px",height:"113px",left:"0",top:"0"}, 200);
var title = $(this).children('img').attr("alt");
$(".desc").text("");
});
});
</script>
Помогите найти ошибку