Я использую плагин Карусель jquery в моем приложении. Мне нужно отобразить имя. Имя правильно отображается в IE, но не в Mozilla.
Вот мой код:
function mycarousel_itemVisibleInCallbackAfterAnimation(carousel, item, idx, state) {
if (document.getElementById("Id") != null) {
if (item.all) {
if (item.all[1]) {
if (item.all[1].childNodes) {
document.getElementById("Id").innerHTML =
item.all[1].childNodes[0].alt;
}
}
}
}
};
Может ли кто-нибудь мне помочь.