easycoupons 0 Newbie Poster

Writing HTML in a SCRIPT Element
A common error (and the most common source of erroneous bug reports for the WDG HTML Validator) occurs when writing HTML tags within a SCRIPT element:

<script type="text/javascript">
<!--
  // This is an error!
  document.write("</P>");
// -->
</script>

<<snip>>