Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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"

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.