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 http://nicedit.com Script below works perfect with textareas but i want to get it work with divs and specified id or class. I was trying to make it work for several hours but i failed. Can anyone help me to change the code please?

        <!DOCTYPE html>
    <html>
    <head>
        <meta charset = "utf-8">

        <title></title>

        <script src = "http://js.nicedit.com/nicEdit-latest.js"></script>

        <script>
            window.onload = function () {
                var body = document.body;
                body.addEventListener ("click", function (event) {
                    var target = event.target;

                    if (target.nodeName === "TEXTAREA") {
                        var area = new nicEditor ({fullPanel : true}).panelInstance (target);

                        area.addEvent ("blur", function () {
                            this.removeInstance (target);
                        });
                    }
                }, false);
            }
        </script>

        <style>
            textarea {
                height: 100px;
                margin-bottom: 20px;
                width: 1000px;
            }
        </style>
    </head>

    <body>
 <textarea>text</textarea> <textarea>text</textarea>
    </body>
</html>
share|improve this question
instead of textarea you want it to work with a div ? – Dhiraj Bodicherla Jun 23 '12 at 14:55
Yes. I want it to work with a div which have specified id or class. Ex: <div class="ediatable"... – user1476730 Jun 23 '12 at 16:52

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.