Re: <!--{cps..0}-->

  •  02-23-2006, 4:23 PM

    Re: <!--{cps..0}-->

    I tried this in the above example:
     
    <html>
        <head>
            <script>
                    function Test()
                    {
                        alert('Test')
                    }
            </script>
        </head>
        <body>
            <input id=Button1 onclick=Test() type=button value=Button1 name=Button1>
        </body>
    </html>
     
    I tried this on the onload of the body tag as well as adding a button just for more testing purposes.  When i click on the button or on the onload of the body tag, i get an object not found error.  if i right click and ViewSource i see the below as the source.
     
    <html>
        <head>
             -- the value in the subject link (for whatever reason, that value wont' display in the editor)
        </head>
        <body>
            <input id=Button1 onclick=Test() type=button value=Button1 name=Button1>
        </body>
    </html>
     
     
    thanks in advance for your help
View Complete Thread