function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
swimminglyswimmingly 

web-to-lead form question

Salesforce generates the following code in my web-to-lead form, but it doesn't work and I'm looking for suggestions about how to make it work properly:

 

<script type="text/javascript">var editor = new FCKeditor('00N30000009xphsEAA', null, 425);editor.BasePath = '/apexpages/fckeditor/';editor.Config['CustomConfigurationsPath'] = '/apexpages/richtext.config.js';editor.ToolbarSet = 'SalesforceBasic';editor.Config['SkinPath'] = editor.BasePath + 'editor/skins/sfdc/';editor.Config['DefaultLanguage'] = 'en-us';editor.Config['EditorAreaStyles'] = ['/sCSS/25.0/sprites/1340133642000/Theme3/default/HtmlDetailElem.css'];editor.Config['ImageUpload'] = true;editor.Config['SitesPath'] = '';editor.ReplaceTextarea();
</script>

 

I've downloaded FCKeditor, but am still having problems.  Any suggestions would be greatly appreciated!!