Hello,
I have set light on dark colors in the HTML Source View Preferences. However embedded javascript code does not follow the color rules for normal text or preformatted text.
This tag
and this tag
appear fine, but everything between them is colored black, which makes it very difficult to see in my color scheme.
I have set light on dark colors in the HTML Source View Preferences. However embedded javascript code does not follow the color rules for normal text or preformatted text.
Code:
<script language="JavaScript"> function textCounter(field, countfield, maxlimit) { if (field.value.length > maxlimit) { //Trim it field.value = field.value.substring(0, maxlimit); } else { countfield.value = maxlimit - field.value.length; } } </script>
Code:
<script language="JavaScript">
Code:
</script>