Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/01/2011, 11:34
st0nk
 
Fecha de Ingreso: julio-2005
Mensajes: 23
Antigüedad: 18 años, 10 meses
Puntos: 0
Problemas validacion w3c (character "<" )

Que tal gente....

Estoy tratando de validar mi web, en el w3c y me da este error:

Cita:
# Warning Line 111, Column 27: character "<" is the first character of a delimiter but occurred as data

if (this.displayedPage < lastPage)


This message may appear in several cases:

* You tried to include the "<" character in your page: you should escape it as "&lt;"
* You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
* Another possibility is that you forgot to close quotes in a previous tag.
El codigo al que hace referencia es de una galeria de fotos, el cual es este:

Código:
			// Show appropriate next / prev page links
			if (this.displayedPage > 0)
				prevPageLink.css('visibility', 'visible');

			var lastPage = this.getNumPages() - 1;
			if (this.displayedPage < lastPage)
				nextPageLink.css('visibility', 'visible');

Saludos!