Errors found while checking this document as XHTML 1.0 Transitional!

Result: 3 Errors
:
: iso-8859-2
: XHTML 1.0 Transitional
Root Element: html
Root Namespace: http://www.w3.org/1999/xhtml
Options

Help on the options is available.

↑ Top

Validation Output: 3 Errors

  1. Error Line 108, Column 22: an attribute specification must start with a name or name token
    	document.write('<scr' + 'ipt type="text/javascript" src="http' + (location.pro…

    An attribute name (and some attribute values) must start with one of a restricted set of characters. This error usually indicates that you have failed to add a closing quotation mark on a previous attribute value (so the attribute value looks like the start of a new attribute) or have used an attribute that is not defined (usually a typo in a common attribute name).

  2. Error Line 108, Column 22: element "scr" undefined
    	document.write('<scr' + 'ipt type="text/javascript" src="http' + (location.pro…

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  3. Error Line 108, Column 195: delimiter "'" invalid: only S separators and TAGC allowed here
    …isplaycontent.com/3ce696f92dc442f804681895d4fa4fea/invoke.js"></scr' + 'ipt>');

↑ Top