Question... when using on page javascript and styles, you'd comment it out so that it wouldn't fuck up on some browsers.... eg:
Code:
<style type="text/css"><!--
--></style>
<script language="JavaScript" type="text/javascript"><!--
// --></script>
How are you supposed to do that on the newer XML/XHTML doc types?
Like this???
Code:
<style type="text/css"><![CDATA[
]]></style>
<script language="JavaScript" type="text/javascript">// <![CDATA[
// ]]></script>
or???