script tags in head replaced into body

  •  08-08-2007, 6:27 AM

    script tags in head replaced into body

    This is a problem unsolved by me

    for example the code below :

    <html>
    <head>
    <script> alert('This is a test'); </script>
    </head>
    <body></body>
    </html>

    changed by cuteeditor like this:

    <html>
    <head>
    </head>
    <body>
    <script> alert('This is a test'); </script>
    </body>
    </html>

    how can i resolve this issue?

    Thanks

View Complete Thread