You are developing a website for an intranet (possibly an Internet camera), you can write:
<script>
$(functions(){});
</script>
If you are using HTML or XHTML for the web, I suggest you write script tags as follows:
<script type="text/javascript">
// <![CDATA[
// functions
$(functions(){});
// ]]>
And to complete this for Inline CSS, since we are on it:
<style type="text/css">
/* <![CDATA[ */
/* tags */
html, body {}
/* ]]> */
</style>
Thus, any character you enter there must have a valid character
EDIT
http://en.wikipedia.org/wiki/CDATA#Uses_of_CDATA_sections
source
share