Hi,
When i tried to enter the content with script tag in the tinyMCE HTML editor(in the editor, i clicked html option and pasted my code) code is getting commented automatically after saving.
code i enetered
<script language="javascript">
var app = getParameter("app"),
appTitle = "",
cmp = cmpVal(),
campaign = "",
url = "";
if (cmp) {
campaign = "&" + cmp;
}
</script>
code after saving
<script language="javascript"><!--
var app = getParameter("app"),
appTitle = "",
cmp = cmpVal(),
campaign = "",
url = "";
if (cmp) {
campaign = "&" + cmp;
}
// --></script>
Please tell me how to fix this issue.