I downloaded FCK and cant seem to get a simple test page up and running ... below is my htm page. When I load the page in IE6 I get an unexpected quantifier error in line 17 at char 1448 of .../editor/fckeditor.html?InstanceName=bob&Toolbar=Default
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Untitled Document</title> <script type="text/javascript" src="javascript/FCKeditor/fckeditor.js"></script> </head> <body bgcolor="#FFFFFF"> <form action="t.php" method="post"> <input name="name" type="text"> <script type="text/javascript"> var oFCKeditor = new FCKeditor( 'bob' ) ; oFCKeditor.BasePath = '/javascript/FCKeditor/' ; oFCKeditor.value = "enter text here"; oFCKeditor.Create() ; </script> <input name="submitok" type="submit"> </form> </body> </html>
RE: newbie... can't get things to work