Error found while checking this document as XHTML 1.0 Strict!

Result: 1 Error, 2 warning(s)
:
: utf-8
: XHTML 1.0 Strict
Root Element: html
Root Namespace: http://www.w3.org/1999/xhtml
Options

Help on the options is available.

↑ Top

Validation Output: 1 Error

  1. Warning Line 143, Column 403: character "<" is the first character of a delimiter but occurred as data
    …nt.cookie.length; var i = 0; while (i < clen) { var j = i + alen; if (document…

    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.
  2. Warning Line 143, Column 1604: character "<" is the first character of a delimiter but occurred as data
    …ByTagName('input'); for (var i = 0; i < t.length; i++) { if (t[i].className ==…

    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.
  3. Error Line 144, Column 11: character data is not allowed here
    <noscript>Your browser is not Javascript enable or you have turn it off. We rec…

    You have used character data somewhere it is not permitted to appear. Mistakes that can cause this error include:

    • putting text directly in the body of the document without wrapping it in a container element (such as a <p>aragraph</p>), or
    • forgetting to quote an attribute value (where characters such as "%" and "/" are common, but cannot appear without surrounding quotes), or
    • using XHTML-style self-closing tags (such as <meta ... />) in HTML 4.01 or earlier. To fix, remove the extra slash ('/') character. For more information about the reasons for this, see Empty elements in SGML, HTML, XML, and XHTML.

↑ Top