suyati / line-control

A Light Weight HTML5 Text Editor designed as a JQuery Plugin
Other
124 stars 90 forks source link

pasting from word problems #92

Open sgermosen opened 6 years ago

sgermosen commented 6 years ago

Hi, how i can paste text without format, or, fix the issues that i have when i paste from word

rahulmahadik commented 4 years ago

below code will fix the issue

$(document).ready(function () {
        document.querySelector("div.Editor-editor[contenteditable]").addEventListener("paste", function (e) {
            e.preventDefault();
            var text = e.clipboardData.getData("text/plain");
            document.execCommand("insertHTML", false, text);
        });
    })