The code ranging between the tags "scripts" is modified (to lower case)

  •  10-14-2005, 7:02 AM

    The code ranging between the tags "scripts" is modified (to lower case)

    Hello,
     
    I have a problem with the editor:
     
    The code ranging between the tags "scripts" is modified (to lower case)

    Example:
        <script type=text/javascript>
            var H_Al = 10;
            for (i=0;i<H_Al;i++){...}
            ...
        </script>
     
    Becomes:
       <script type=text/javascript>
            var H_Al = 10;
            for (i=0;i<h_al;i++){...}
            ...
        </script>
     
    What causes obviously an error.
    The text "<H_Al" would be replaced by "<h_al" like a tag HTML !?!
     
    How can I avoid this?
     
    Thank you.
View Complete Thread