What is the best way to hide inline Javascript and CSS from downstream browsers? ... I see several options for a common theme. Are they all correct or is one approach better than the other?
<script language="javascript" type="text/javascript">
</script>
against
<script type="text/javascript">
//<![CDATA[
/* Javascript code here */
//]]>
</script>
against
<style type="text/css">
/*<![CDATA[*/ CSS stuff here /*]]>*/ </style>
source
share