WerewolfGSM
Creative Developer
- Регистрация
- 4 Дек 2006
- Сообщения
- 266
- Реакции
- 23
- Автор темы
- #1
Добрый день.
Валидатор w3.org ругается на следующий javascript код в теле страницы:
Это функция слайдшоу галереи.
Вот что говорит
Предлагает мне экранировать знак "<" в коде. После экранирования код естественно работать не будет. Как обмануть валидатор?
Спасибо.
Валидатор w3.org ругается на следующий javascript код в теле страницы:
PHP:
var show = function() {
images[currentIndex].fade('out');
images[currentIndex = currentIndex < images.length - 1 ? currentIndex+1 : 0].fade('in');
};
Вот что говорит
PHP:
Line 96, Column 38: character "<" is the first character of a delimiter but occurred as data
images[currentIndex = currentIndex < images.length - 1 ? currentIndex+1 : 0].…
This message may appear in several cases:
* You tried to include the "<" character in your page: you should escape it as "<"
* You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&", which is always safe.
* Another possibility is that you forgot to close quotes in a previous tag.
Спасибо.