HTML interesse |
|
Heb een extern js.bestand die bij de W3C-validator de volgende fouten geeft.Citaat: Line 59, Column 33: character ";" not allowed in attribute specification list.
for (var i=0; i<elementen.length; i++) {✉
Line 59, Column 33: element "ELEMENTEN.LENGTH" undefined.
for (var i=0; i<elementen.length; i++) {✉
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).
Line 60, Column 27: character "[" not allowed in attribute specification list.
for (var x=0; x<elementen[i].length; x++) {✉
Line 60, Column 27: element "ELEMENTEN" undefined.
for (var x=0; x<elementen[i].length; x++) {✉
Heb echt al van alles gedaan om ze eruit te krijgen maar dan worden het er alleen maar meer. Wie weet wat er fout is aan deze code in het js.bestand
Plaatscode: 73059
|