You could ignore it as the validator is looking inside the script where it has no real business looking.
Or you can make the script external (preferred).
Or you could escape the / slashes in the closing </span> tags inside the script. Replacing:
Code:
fader[2].msg[0] = "<span class=\'a8\'>Grace for the guilty </span><span class=\'a3\'>Q</span><span class=\'a8\'> Rest for the weary</span>";
fader[2].msg[1] = "<span class=\'a2\'>My grace is sufficient for you, for my power is made perfect in weakness. (2 Corinthians 12:9)</span>";
fader[2].msg[2] = "<span class=\'a8\'>Grace for the guilty </span><span class=\'a3\'>Q</span><span class=\'a8\'> Rest for the weary</span>";
with:
Code:
fader[2].msg[0] = "<span class=\'a8\'>Grace for the guilty <\/span><span class=\'a3\'>Q<\/span><span class=\'a8\'> Rest for the weary<\/span>";
fader[2].msg[1] = "<span class=\'a2\'>My grace is sufficient for you, for my power is made perfect in weakness. (2 Corinthians 12:9)<\/span>";
fader[2].msg[2] = "<span class=\'a8\'>Grace for the guilty <\/span><span class=\'a3\'>Q<\/span><span class=\'a8\'> Rest for the weary<\/span>";
That's replacing all </span> tags in the script code with <\/span>.
Bookmarks