Witam,
Poprawiłem wszystkie błedy w walidatorze zostały takie których nie rozumiem. To znaczy wiem co jest na pisane ale nie mam zielonego pojęcia jak ich poprawić.
Mógłby ktoś doradzić?:
#1
Line 187, Column 21: an attribute specification must start with a name or name token
document.write('<scr'+'ipt type="text/javascript" src="'+W2T_adb);
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
Line 187, Column 21: element "scr" undefined
document.write('<scr'+'ipt type="text/javascript" src="'+W2T_adb);
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
Line 192, Column 24: delimiter "'" invalid: only S separators and TAGC allowed here
document.write('"></scr'+'ipt>');
Z góry dziękuje za pomoc ponieważ przerastają mnie te błędy =/