1

I'm using CKEditor for a backend in my web app. When I copy and paste text from another place, it adds <div>Â</div> at the end of the copy pasted text, This even become worse when I post into a database. It adds a lot of the  and character in unwanted areas. How can I resolve this?I also have jQuery libraries in my web app.

sammyukavi
  • 1,501
  • 2
  • 23
  • 51

2 Answers2

3

I fixed it by changing the page encoding from <META http-equiv="Content-Type" CONTENT="text/html; charset=iso-8859-1"/> to <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />. More information can be found here

Community
  • 1
  • 1
sammyukavi
  • 1,501
  • 2
  • 23
  • 51
0

Use the "Paste as Plain Text" button for all pasting. This one: CKEditor Paste as Plain Text

rg88
  • 20,742
  • 18
  • 76
  • 110