Content within these tags is ignored by Microsoft Reader. The <script> tag is not a part of the OEB specification. However, it is common on Web pages, and so the best practices for eliminating it are important.
All script tags must be formatted within CDATA blocks. CDATA sections may occur anywhere character data may occur. They are used to escape blocks of text containing characters which would otherwise be recognized as markup. CDATA sections begin with the string <![CDATA[
and end with the string ]]>
<script event="onclick" language="JavaScript" type="text/js">
<![CDATA[
alert('Java Script')
]]>
</script>
© 2000 Microsoft Corporation. All rights reserved. Terms of use.