Whatever message this page gives is out now! Go check it out!
ColdFusion.RichText.onComplete(editorInstance) |
Parameter | Description |
editorInstance | the FCKEditor instance that underlies the rich text editor. |
<html>
<head>
<script type="text/javascript">
//User defines this function to get control once the rich text editor
//is done with its initialization
ColdFusion.RichText.OnComplete = function(editorInstance)
{
alert("on complete called");
alert("editor instance = " + editorInstance));
}
</script>
</head>
<body>
<cfform>
<cftextarea richtext = true name="richtext1">
</cfform>
</body>
</html>