the following code will not work in IE6 unless u change "name" of the <input> to something other then "submit".
Works fine under Mozilla, though.
Works fine under Mozilla, though.
<html> <head> <script type="text/javascript" src="/fckeditor/fckeditor.js"></script> </head> <body> <form action='' method='POST'> <script type="text/javascript"> var oFCKeditor = new FCKeditor('test') ; oFCKeditor.Create() ; </script> <input type='submit' name = 'submit' value='submit'> </form> </body> </html>
RE: name = "submit"