Tips for Valid XHTML Snippets for External Tracking
This article provides information about Tips for Valid XHTML Snippets for External Tracking
A few tips for valid XHTML code:
- Each element must be a single element. For example, the following code will not validate:
<script>...</script> <script>...</script>
In order to make the code validate, you must add a <div> tag around the non-single elemnets, as shown below.
<div> <script>...</script> <script>...</script> </div>
-
With the newer XHTML standards, you cannot just include JavaScript between the script tags without potentially breaking validation. To fix this problem, use the tag <![CDATA[ ...]]> around the JavaScript code, as shown below.
<script> <![CDATA[ ... ]]> </script>
Have any questions about FastSpring? We’re here to help!