I've saved the website as HTML page then looked at the source code. We
embed the JS 2 times:
<script type="text/javascript" src="content_overview_data/
tiny_mce.js"></script>
....
.....
<script type="text/javascript" src="content_overview_data/
tiny_mce.js"></script>
And we have functions TinyMCE_getSelectedText and insertHTML appear 2
times in the code as well.
I think that is the reason. Can we just only embed those things only
one?
My source code is as below:
<widgets:plpWrapper>
<cfoutput>
<form action="#CGI.script_name#?#CGI.query_string#" method="post"
name="editform" class="f-wrap-1 wider f-bg-short">
<label for="sourceCitation">
<widgets:richTextEditor textareaName="sourceCitation"
value="#output.sourceCitation#" fieldLabel="Source Citation:"><br />
</label>
<label for="sourceCitation1">
<widgets:richTextEditor textareaName="sourceCitation1" value=""
fieldLabel="Source Citation1:"><br />
</label>
<input style="display:none;" type="submit" name="buttonSubmit"
value="submit" />
</form>
</cfoutput>
</widgets:plpWrapper>