I am using nicedit as a RTF. Everthing looked like it was working fine, but I just noticed that when I select 'Bold' 'Italic' or 'Underline', the highlighted text MOVES to the beginning of the paragraph!
<script src="../../js/nicEdit.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
var myNicEditor = new nicEditor({iconsPath : '../../images/nicEditorIcons.gif',buttonList : ['bold','italic','underline','strikeThrough','ul']});
myNicEditor.setPanel('myNicPanel');
myNicEditor.addInstance('area1');
});
</script>
and my html
<form action="actions.php?action=4" method="POST" id="basicinfo">
<div class="set" id="area1set">
<label for="area1">Location</label>
<span>
<div id="myNicPanel" style="width: 320px;"></div>
<div id="area1" ></div>
</span>
</div>
</form>
Just to reiterate the issue: If I were to type 'hello I am testing this div' into the div, it shows up fine as text. If I highlighted the word 'testing' and then clicked the B in the Rich Text Editor, my text would be in this order:
"testing hello I am this div"